//HelloWorld.java
public class HelloWorldApp {
public static void main(String args[]) {
System.out.println( "Hello World! ");
}
}
在cmd中用java HelloWorldApp 通过了
所以我觉的jdk 的路径应该对
可下面这个程序怎么弄也不行
import java.awt.*;
import java.applet.*;
public class HelloWorldApplet extends Applet{
public void init(Graphics g){
g.drawString( " helloworld ",20,20);
}
}
//<applet code= "HelloWorldApplet.class " width=20 height=20> </applet>
保存为HelloWorldApplet.java
编译也通过了
用appletviewer HelloWorldApplet.java运行
可屏幕上什么也没有显示 直接回到命令提示符
也没提示有错误~~~
在线等~~!!
------解决方案--------------------
import java.swing.*;
public class HelloWorldApplet extends JApplet
现在Applet很少用了吧?一般都用swing了。
------解决方案--------------------
你的尖括号用的是中文的尖括号,要用英文的
------解决方案--------------------
<applet code= "HelloWorldApplet.class " width=20 height=20> </applet>
把这段代码保存为html格式
然后在cmd下用appletviewer HelloWorldApplet.html运行
------解决方案--------------------
<HTML>
<HEAD>
<TITLE> AnApplet </TITLE>
</HEAD>
<BODY>
<applet code= "HelloWorldApplet.class " width=200 height=40> </applet>
</BODY>
</HTML>
将其保存为HelloWorldApplet.html
然后在cmd下用:appletviewer HelloWorldApplet.html运行