我在 netbeans 中创建了一个名为 PaintApplet 的 japplet,我得到了它的 .jar 文件并将其与 html 文件放在一个文件夹中,html 文件是这样的:
<html>
<body>
<APPLET ARCHIVE="PaintApplet.jar" CODE=PaintApplet.class WIDTH=800 HEIGHT=500>
</APPLET>
</body>
</html>
如果类不在默认包中,则从标记中删除 .class 并添加包名。
<APPLET
ARCHIVE="PaintApplet.jar"
CODE="com.org.PaintApplet"
WIDTH=800 HEIGHT=500>
</APPLET>
请参阅http://docs.oracle.com/javase/tutorial/deployment/applet/html.html
- code 是小程序类的名称
- archive 是包含小程序及其资源的 jar 文件的名称
- width 是小程序的宽度
- height 是小程序的高度
或者使用对象标签:
<OBJECT
classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93"
width="800" height="500">
<PARAM name="code" value="com.org.PaintApplet">
<PARAM name="archive" value="PaintApplet.jar">
</OBJECT>
此外,请确保您已安装最新的 JRE 版本(当前为 1.7.0 更新 17),因为如果 java 插件不是最新的,某些浏览器将阻止小程序。