无法从桌面快捷方式打开 fat jar
胖罐子在我指定的位置可以正常打开,但当我通过桌面快捷方式调用它时它不会打开。尽管如果我右键单击该图标并说打开文件位置,它会打开正确的文件。
SetOutPath $INSTDIR
SetOverwrite on
File C:\jitconsole\JITConsole\jitconsole.jar
SetOutPath $INSTDIR\images
File C:\jitconsole\JITConsole\images\*
SetOutPath $INSTDIR\lib
File C:\jitconsole\JITConsole\lib\*
SetOutPath $DESKTOP
CreateShortcut $DESKTOP\JIT.lnk $INSTDIR\jitconsole.jar "" $INSTDIR\images\JIT_medium.ico
任何帮助将不胜感激 谢谢
the fat jar opens fine in the location i specified but it wont open when i call it through a desktop shortcut. Although if I right click on the icon and say open file location, it opens the correct file.
SetOutPath $INSTDIR
SetOverwrite on
File C:\jitconsole\JITConsole\jitconsole.jar
SetOutPath $INSTDIR\images
File C:\jitconsole\JITConsole\images\*
SetOutPath $INSTDIR\lib
File C:\jitconsole\JITConsole\lib\*
SetOutPath $DESKTOP
CreateShortcut $DESKTOP\JIT.lnk $INSTDIR\jitconsole.jar "" $INSTDIR\images\JIT_medium.ico
any help would be greatly appreciated
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.jar 可以在任何应用程序中打开,在我的系统上它设置为在 WinRar 中打开!
您应该创建一个执行正确命令行的快捷方式:
这意味着您需要找出安装程序中的 java 路径,如果 java 路径发生更改,您的快捷方式可能会损坏。使用 java 加载器应用程序可能是一个更好的主意:
A .jar could open in any application, on my system it is set to open in WinRar!
You should create a shortcut that executes the correct command line:
This means you need to figure out the java path in the installer and if the java path changes your shortcut might break. It is probably a better idea to use a java loader app: