how to make executable jar file having an applet only??
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35258
7
posted
0
In order for a jar file to be executed (by which I think you mean have it start running when you double-click it), it needs to have a Manifest file which points to a class that has a main method. So the applet would need to be adapted to run as an application. See the Applet FAQ for an approach that helps you do this.