H
hunzean
Unregistered / Unconfirmed
GUEST, unregistred user!
我写了一个HelloWorld.java 内容如下:
import java.applet .*;
import java.awt.*;
public class HelloWorld extends Applet
{
public void paint(Graphics g)
{
g.drawString ("你好,Java世界!",2,20);
}
}
编译后的Class为 HelloWorld.class,放在F:/下。
我做了一个html文件,想让它调用HelloWorld.class,内容如下:
<html>
<head><title>我的第一个JavaApplet程序</title></head>
</body>
<p>
<applet code=HelloWorld.class
width=100
height=200>
</applet>
</body>
</html>
但是打开html后只出来一个灰色的方块,没有字,谁知道这是为什么?
import java.applet .*;
import java.awt.*;
public class HelloWorld extends Applet
{
public void paint(Graphics g)
{
g.drawString ("你好,Java世界!",2,20);
}
}
编译后的Class为 HelloWorld.class,放在F:/下。
我做了一个html文件,想让它调用HelloWorld.class,内容如下:
<html>
<head><title>我的第一个JavaApplet程序</title></head>
</body>
<p>
<applet code=HelloWorld.class
width=100
height=200>
</applet>
</body>
</html>
但是打开html后只出来一个灰色的方块,没有字,谁知道这是为什么?