在 Windows 桌面上创建快捷方式图标
如何从 Java 应用程序为现有 exe 文件创建 Windows 快捷方式别名?
How can I create a Windows shortcut alias for an existing exe file from within a Java application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Windows 快捷方式已经是古老的野兽了。您可以使用 JShortcut http://alumnus.caltech.edu/~jimmc/jshortcut/ ,它使用 JNI(Java 本机接口)来创建快捷方式。如果您只是执行一个快速实用程序,您也可以使用 Runtime.exec() 来调用 VB 脚本。
Windows shortcuts are hoary beasts. You could use JShortcut http://alumnus.caltech.edu/~jimmc/jshortcut/, which used JNI (Java Native Interface) to create the shortcut. If you are just doing a quick utility you can also just use Runtime.exec() to call a VB script.