Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在尝试使用浏览器查看小程序时收到此错误。以前有人遇到过这个问题吗?
这是保存为 index.html 的 HTML 文件。我在starApplet.class 文件所在的bin 文件夹中使用eclipse 创建了它。
<html> <applet code="starApplet.class" width="500" height="500"> </applet> </html>
我不知道你的文件名是对还是错,但假设是对的,你必须删除 .class 扩展名:
<html> <applet code="starApplet" width="500" height="500"> </applet> </html>