| Author |
launching GUI through an icon
|
Bhargo Dev Arya
Greenhorn
Joined: Jun 29, 2011
Posts: 8
|
|
Hi everyone...
I have created a swings application in JAVA
I want this application to be launched by clicking on an icon.
Now any java program should work where ever we have the JRE and the JDK, so how can I create an icon so that when I click on the icon the GUI comes on screen in windows os?
Is creating a jar an answer to this...if yes then please explain how?if not then please tell me how it can be done...
regards
bhargo
|
 |
Stephan van Hulst
Bartender
Joined: Sep 20, 2010
Posts: 3056
|
|
|
Just create an executable Jar, and create a shortcut to your Jar. You can set an image for your shortcut.
|
 |
Roberto Perillo
Bartender
Joined: Dec 28, 2007
Posts: 2212
|
|
Just to complement what my good buddy Stephan just said, in your executable JAR file, you'll have to indicate the Main-Class in your MANIFEST.MF file (the Main-Class is the fully-qualified name of the class that has the main method, that is, the class that launches your application).
You can find more about the MANIFEST.MF file here and more about the jar command here.
|
Cheers, Bob "John Lennon" Perillo
SCJP, SCWCD, SCJD, SCBCD - Daileon: A Tool for Enabling Domain Annotations
|
 |
 |
|
|
subject: launching GUI through an icon
|
|
|