如果我想在我的应用程序中嵌入 JRE,我有这个目录结构。
+---jre
| +---bin
RunMyApp.bat
myApp.jar
我在 RunMyApp.bat 中添加了这个语句来访问 java.exe
jre\bin\java.exe -help
那么如何使用 RunMyApp.bat 脚本运行 myApp.jar 呢?
我试过这个,但没有成功
jre\bin\java.exe -jar "%cd%\..\..\myApp.jar"
如果我想在我的应用程序中嵌入 JRE,我有这个目录结构。
+---jre
| +---bin
RunMyApp.bat
myApp.jar
我在 RunMyApp.bat 中添加了这个语句来访问 java.exe
jre\bin\java.exe -help
那么如何使用 RunMyApp.bat 脚本运行 myApp.jar 呢?
我试过这个,但没有成功
jre\bin\java.exe -jar "%cd%\..\..\myApp.jar"