我知道,现在没有人使用applet,但是我的本科学位仍在课程提要中!
这是我的HelloWorld.java
文件代码
import java.applet.Applet;
import java.awt.Graphics;
public class HelloWorld extends Applet {
public void paint(Graphics g) {
g.drawString("Hello world!", 50, 25);
}
}
这是我的Hello.html
文件代码
<html>
<body>
Here is the output of my program:
<applet code="HelloWorld.class" width="150" height="25"></applet>
</body>
</html>
两个文件均保存到桌面。
这就是我所做的:
cd desktop
javac HelloWorld.java
没有浏览器运行小程序!普通的Java(AWT)程序是使用CMD运行的,而不是使用applet运行的。
我正在使用的JDK和JRE版本分别是jdk1.8.0_201和jre1.8.0_201。
答案 0 :(得分:2)
使用以下命令:
where
另存为“ HelloWorld.html”
/*
<html>
<applet code="HelloWorld.class" CodeBase="" width=300 height=400></applet>
</html>
*/