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 "-//W3C//DTD W3 HTML 4.0//EN">
<html>
<title>hello word!</title>
<body bgcolor="FFFF00">
<center>
<applet code="helloword.class"
width="240"
height="20">
</applet>
</center>
</body>
</html>
<! -- end of hello word.html-->
可是打开html时总是报错:因为使用了java,此网页无法正确显示。
我安装了JBuilder9,j2esdk1.4.3,环境变量也设了,不知为什么,搞了好几天了。
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 "-//W3C//DTD W3 HTML 4.0//EN">
<html>
<title>hello word!</title>
<body bgcolor="FFFF00">
<center>
<applet code="helloword.class"
width="240"
height="20">
</applet>
</center>
</body>
</html>
<! -- end of hello word.html-->
可是打开html时总是报错:因为使用了java,此网页无法正确显示。
我安装了JBuilder9,j2esdk1.4.3,环境变量也设了,不知为什么,搞了好几天了。