我在尝试使用浏览器查看applet时遇到此错误。以前有人经历过这个问题吗?
这是保存为index.html的HTML文件。我在binApp文件夹中使用eclipse创建了它,其中存在starApplet.class文件。
<html>
<applet code="starApplet.class" width="500" height="500">
</applet>
</html>
答案 0 :(得分:0)
我不知道您的文件名是对还是错,但假设它是正确的,您必须删除.class扩展名:
<html>
<applet code="starApplet" width="500" height="500">
</applet>
</html>