“MyApp”文件夹现在具有以下结构:
- MyApp
- lib
- MyLib.jar
- MyApp.jar
MyApp.jar有一个Class-Path: lib/MyLib.jar
我想将MyApp.exe文件添加到“MyApp”文件夹中。所以我把通过WinRun4J创建exe所需的所有文件放到“MyApp”文件夹中。然后我按照here描述运行bat文件。这给了我一个带有正确图标的exe文件,但是当我运行它时我看到的只是一个闪屏。我哪里错了?我的ini文件内容:
main.class=my.main.class
classpath.1=lib/MyLib.jar
splash.image=SplashScreen.gif
答案 0 :(得分:0)
您还必须包括主罐:
main.class=my.main.class
classpath.1=MyApp.jar
classpath.2=lib/MyLib.jar
splash.image=SplashScreen.gif
或简单地包括所有罐子:
main.class=my.main.class
classpath.1=*.jar
classpath.2=lib/*.jar
splash.image=SplashScreen.gif