河南信用建设促进会:jsp的错误提示

来源:百度文库 编辑:中科新闻网 时间:2024/04/28 14:48:58
C:\j2sdk1.4.2_09\bin>javac c:\helloworld.java
c:\helloworld.java:3: package system does not exist
system.out.println("helloworld!");
^
1 error

这个是什么意思

我的源文件是:
public class helloworld{
public static void main(String args[]){
system.out.println("helloworld!");
}
}