-1

我在尝试使用浏览器查看小程序时收到此错误。以前有人遇到过这个问题吗?在此处输入图像描述

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

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

1 回答 1

0

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

<html>
    <applet code="starApplet" width="500" height="500">
    </applet>
</html>
于 2012-12-04T21:44:35.820 回答