Quote:
Originally Posted by Vasiq
thanks a lot for your help chandru. Now we are almost done with our GUI designing and now i want to create a .jnlp file so that i can launch the file by clicking on it.
Could you please tell me how to create a jnlp file for the GUI.
|
JNLP is not needed for starting an app with double click. All you need is an executable jar file. JNLP brings with it few security restrictions which may not suit a messenger app.
To create an executable jar, create a plain text file with name say my_manifest. Put this in your top level build directory (where your package directories exist). Then give the below command.
Code:
jar cfm messenger.jar my_manifest *