当我尝试将我的applet定义为Main class
时<JWrapper>
<!-- The name of the app bundle -->
<BundleName>MemoryMap</BundleName>
<!-- The specification for one app within the bundle -->
<App>
<Name>MemoryMap</Name>
<LogoPNG>sampleapp/logo.png</LogoPNG>
<MainClass>com.example.SampleApplet</MainClass>
</App>
低于例外 引起:java.lang.NoSuchMethodException:com.example.SampleApplet.main([Ljava.lang.String;)
不确定我们是否无法将applet类定义为主类,这是否意味着Jwrapper无法捆绑Applet?
请建议..
答案 0 :(得分:0)
无法将Applet或JApplet指定为JWrapper应用程序中的主类,但将Applet或JApplet转换为独立类通常只是创建JFrame并将applet UI嵌入其中的简单过程,然后指定启动JFrame的主要方法。
以下是一个例子:
http://www.coderanch.com/t/337839/GUI/java/Convert-Applet-Stand-app