我正在尝试在 MacBook Pro 上学习 Java,但我什至不确定如何编译或运行程序并在终端中不断获得以下信息:
javac: file not found: Example.java
Usage: javac <options> <source files>
use -help for a list of possible options
当我输入保存在文本编辑中的 Example.java 的第一个代码时。我在文本编辑中输入的代码是
/*
This is a simple Java program.
Call this file Example.java.
*/
class Example {
// A Java program begins with a call to main ().
public static void main (String args[]) {
System.out.println ("Java drives the web.");
}
}
javac Example.java
java Example
我发现信息说要设置类路径,但不知道该怎么做。请保持一切尽可能简单。