因为使用了java,此网页无法正确显示(100分)

  • 主题发起人 主题发起人 BmwHans1
  • 开始时间 开始时间
B

BmwHans1

Unregistered / Unconfirmed
GUEST, unregistred user!
我刚学JAVA,照着书上写了一个applet,叫helloword.java,代码很简单元,
package helloword;
import java.lang.*;
import java.awt.*;
import java.applet.*;
public class helloword extends Applet{
public void paint(Graphics g) {
g.drawString("this is my first java test app!",50,50);
System.out.println("this is my first java test app!");
}
}
然后javac helloword.java 生成helloword.class.再建一个html:
<!do
CTYPE html PUBLIC &quot;-//W3C//DTD W3 HTML 4.0//EN&quot;>
<html>
<title>hello word!</title>

<body bgcolor=&quot;FFFF00&quot;>
<center>
<applet code=&quot;helloword.class&quot;
width=&quot;240&quot;
height=&quot;20&quot;>
</applet>
</center>
</body>
</html>
<! -- end of hello word.html-->
可是打开html时总是报错:因为使用了java,此网页无法正确显示。
我安装了JBuilder9,j2esdk1.4.3,环境变量也设了,不知为什么,搞了好几天了。
 
没人帮忙吗?
 
你确定你没有在iE中禁用java?
 
IE6.0要装插件才能运行applet.
 
后退
顶部