how (and if) you can make a jar file launch just from a click?
On windows there are entries in the Registry that tell the OS what to do when a file with an extension is double clicked/openned. Many of the entries are command lines that the OS will execute when the file is double clicked.
The java installation adds an entry for .jar files. Something like this:
java -jar "%1"
where %1 is replaced by the jar file name.
It is possible to add your own command lines to the registry so that when you Right Click on a file, you get a list of choices of commandlines to execute.
I have double click set on for my WinXP. I don't know if you can set the OS to execute a file with a single click. If an icon is placed in the Toolbar at the bottom of the screen, a single click will execute it.