我是Java新手,但有一些编程经验。我正在读一本关于如何用Java语言编程的书。我对NetBeans和Java缺乏了解,阻碍了我的进步。我的特殊问题是我的输出框中没有看到正确的输出。 无论代码如何。
这是一个例子。我确信我错过了一个小细节:
public class Weather
{
public static void main(String[] arguments)
{
float fah = 86;
System.out.println(fah + " degrees Fahrenheit is ...");
//To conver fahrenheit to Celsius
//Begin by subtracting 32
fah = fah - 32;
//divide the answer by 9
fah = fah / 9;
//multiply that answer by 5
fah = fah * 5;
System.out.println(fah + "degree Celsius is ...");
float cel = 32;
System.out.println(cel + "degress Celsius is ...");
//To convert Farhenheit to celsius
//begin by multiplying 9
cel = cel * 9;
//divide answer by 5
cel =cel / 5;
//add 32 to the answer
cel = cel + 32;
System.out.println(cel + "degrees Farenheit");
}
}
OUTPUT BOX:
run:
Error: Could not find or load main class weather.Weather
Java Result: 1
BUILD SUCCESSFUL (total time: 0 seconds)
答案 0 :(得分:7)
关闭netbeans然后删除此目录C:\ Users \你的名字在这里\ AppData \ Local \ NetBeans \ Cache
再次启动Netbeans并让它读取项目。
测试项目。运行项目。它应该工作正常。
答案 1 :(得分:0)
我遇到了同样的问题,并且可以通过cmd行设置路径来修复它:
by
答案 2 :(得分:0)
这为我工作(Netbeans上的Java 8,2019年6月): 文件>项目属性>运行>应用程序类>浏览>,然后尝试其他应用程序类条目