我是Java的新手并且使用IDE。我有一个问题,我想知道是否有人可以帮助我。我编译了HelloWorld项目并保存了它,但是当我右键单击主项目时,Compile Classpath为空。我知道我需要向libriaies添加一个JAR文件,但我不确定要添加什么文件,这给我带来了问题,因为我无法在IDE之外编译项目。我在Windows7系统上使用NetBeans。
你有什么可以帮我的吗?
这是我运行良好的代码
public class helloworld {
public static void main(String[] args) {
System.out.println("Hello OCA World");
}
}
这是我的jdk bin C:\ Program Files \ Java \ jdk1.7.0_09 \ bin的位置 这是输入系统变量\ PATH
C:\ Program Files \ java \ jdk1.7.0_ {xx} \ bin; C:\ Program Files \ Common Files \ Microsoft Shared \ Windows Live; C:\ Program Files(x86)\ Common Files \ Microsoft Shared \ Windows Live;%SystemRoot%\ system32;%SystemRoot%;%SystemRoot%\ System32 \ Wbem;%SYSTEMROOT%\ System32 \ WindowsPowerShell \ v1.0 \; c:\ Program Files(x86)\ ATI Technologies \ ATI.ACE \ Core-Static; C:\ Program Files \ Dell \ Dell无线WLAN卡; C:\ Program Files(x86)\ Windows Live \ Shared; C:\ Program Files(x86)\ Common Files \ Roxio Shared \ DLLShared \ PrC :\ Program Files(x86)\ QuickTime \ QTSystem \
答案 0 :(得分:0)
编译
javac -classpath .;<path of your jar>; xxx.java
执行
java -classpath .;<path of your jar>; xxx