1

我在eclipse中做了一个小程序,我可以通过右键单击java文件成功运行它并运行为-> Java Applet

但是我想将该小程序添加到 xhtml 文件中,因此在 index.xhtml 文件中添加了小程序标记,但是当我在浏览器中部署 index.xhtml 时,我只是收到一条错误消息,指出找不到 MyApplet.class

<applet code="com.project.helper.MyApplet.class" width="500" height="500">

我以这种方式组织文件:

带有文件正文的图像

4

1 回答 1

1

您必须定义applet xhtml 行的archive 属性,它是您的applet 的jar 文件的位置,应该从中加载类属性。

<applet code="com.project.helper.MyApplet.class" archive="MyApplet.jar" width="500" height="500">
于 2012-06-05T23:17:10.330 回答