Java Applet应用程序错误

时间:2012-12-04 21:19:29

标签: java applet

我在尝试使用浏览器查看applet时遇到此错误。以前有人经历过这个问题吗? enter image description here

这是保存为index.html的HTML文件。我在binApp文件夹中使用eclipse创建了它,其中存在starApplet.class文件。

<html>
<applet code="starApplet.class" width="500" height="500">
</applet>
</html>

1 个答案:

答案 0 :(得分:0)

我不知道您的文件名是对还是错,但假设它是正确的,您必须删除.class扩展名:

<html>
    <applet code="starApplet" width="500" height="500">
    </applet>
</html>