当我试图将我的小程序定义为主类时
<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?
请建议..