我已经开发了 Java Applet 应用程序,但是我在部署时遇到了问题。应用程序在 Eclipse 中成功编译。我在 JAR 文件中导出了应用程序。我创建了 HTML 文件并将以下内容放入其中:
<html>
<title>The Hello, World Applet</title>
<body>
<hr>
<applet code="Applet.class" width="100%" height="100%" archive="Clijent.jar" >
<
</applet>
<hr>
</body>
</html>
当我使用网络浏览器启动小程序时,出现以下错误。
我在我的 Eclipse 项目中成功找到了该类,并将其添加到构建路径中。问题出在哪里?