简体   繁体   中英

A Option to creating shortcuts for swing application

We have a big Java Swing application and with it comes a jar called CreateShortcut that creates a vbscript .wsf who does the job of creating the shortcuts for the system and also put it on the on the start menu and runs it with

Runtime.getRuntime()
      .exec((new StringBuilder("cmd /c \"")).append(getFileWsf()).append("\"").toString())
      .waitFor();

But it always ask for permission to run it from the operational system, and that is scaring a lot of clients.

I would like to know if there's a way of doing it without asking for the permission with the .wsf or maybe just do it on the jar itself with java. Thank you in advance.

显然,这就是我想要的:

http://alumnus.caltech.edu/~jimmc/jshortcut/

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM