当前位置: 技术问答>java相关
一个初学者的衷心求助~谢谢高手指教~
来源: 互联网 发布时间:2015-07-05
本文导语: 程序出现如下错误: "myfirst.java": Error #: 302 : cannot access class system.out; java.io.IOException: class not found: class system.out at line 9, column 12 出错程序段为: system.out.println("This is my first java application."); 请教如何...
程序出现如下错误:
"myfirst.java": Error #: 302 : cannot access class system.out; java.io.IOException: class not found: class system.out at line 9, column 12
出错程序段为:
system.out.println("This is my first java application.");
请教如何解决?我使用的JB6企业版,谢谢!
"myfirst.java": Error #: 302 : cannot access class system.out; java.io.IOException: class not found: class system.out at line 9, column 12
出错程序段为:
system.out.println("This is my first java application.");
请教如何解决?我使用的JB6企业版,谢谢!
|
初学时都会遇到的,别急,去掉packag 加上public
public class myfirst {
public static void main(String args[]) {
System.out.println("This is my first java application.");
}
}
1把javabin路径加到path
2配好classpath
3命令行下
javac myfirst.java
java myfirst
好了,看到没?
public class myfirst {
public static void main(String args[]) {
System.out.println("This is my first java application.");
}
}
1把javabin路径加到path
2配好classpath
3命令行下
javac myfirst.java
java myfirst
好了,看到没?
|
System.out
not system.out
not system.out
|
system.out.println("This is my first java application.");
system 请大写为System ! :)
system 请大写为System ! :)
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。