1

我是小程序的新手,所以请耐心等待。

我有一个使用多个类的 japplet 类,我想从浏览器中运行它。我正在使用 Tomcat 运行小程序,我无法将其他类链接到 Japplet 类。

其他类放在哪里?或任何其他可以帮助我解决此问题的想法。

我的 HTML

<html>
<title>Test Applet</title>
<hr>
<applet class="Main.class" width="320" height="120">
</applet>
<hr>
</html>

我的小程序类:

import javax.swing.JApplet;
import com.getSlide.MainApp;

public class Main extends JApplet {

    public void init() {
        System.out.println("init");
        MainApp main = new MainApp();
    }
}
4

1 回答 1

1

其他类放在哪里?

这取决于它们所在的包。如果它们在默认包中Main(如class="Main.class"暗示的那样),则在同一个目录中。

OTOH 最好将类放入 Jar 中。

如何从小程序中调用 jar?

假设 Jar 被称为the.jar..

<html>
<title>Test Applet</title>
<hr>
<applet code="Main" archive="the.jar" width="320" height="120">
</applet>
<hr>
</html>

另请注意:

class="Main.class"

应该:

code="Main"
于 2013-06-28T14:45:12.817 回答