Tagged Questions
1
vote
2answers
213 views
How to make a shortcut to Java desktop application?
I have made a desktop application in Java (using JDBC and Swing) using Eclipse.
I want to make a shortcut to this application (an icon). When the icon is double clicked, the application will run.
...
2
votes
1answer
202 views
How to launch a Shortcut with Spaces in Java using ProcessBuilder
This is the code I would use normally to execute a Shortcut file (.lnk)
//Get Directory
String currentDir = new File(game.getGamePath()).getCanonicalPath();
//Parse Directory to put ...
1
vote
0answers
123 views
Webstart application doesn´t get updated via desktop-shortcut
Our webstart-application doesn't update correctly via desktop-shortcut when settings the option "<shortcut online="[true|false]">" to false. It seems to work fine when setting it to true but I ...
2
votes
1answer
160 views
How create a installable msi package for my java project?
This installer will first check if jvm is present on the system or not. If not then it will first install the jvm. After that it will include the java code (may be in jar) alongwith the database used. ...
1
vote
2answers
478 views
Java WebStart JNLP: Run Different Code in First Run
We are using WebStart JNLP file to create a shortcut on our users` desktop.
The problem is that we would like the code in our jar file to be launched only when the user press the desktop shortcut.
...
