I created the prototypical "Hello World" program in
Java as "Test.java"
it compile just fine.
It runs fine when I do:
java
Test
I jar'd the class with a manifest file that set the main class.
That runs fine if I do:
java -jar Test.jar
HOWEVER, if I just try to execute the Jar file either from the command prompt or by double clicking on the file then, I don't get any errors but it just doesn't do anything. What am I doing wrong?
By the way, I tried creating an application that had a GUI with a frame and a label and that works fine in an executable jar.
Also, I'm in a Win32 environment if that matters.
Regards,
Tom Malia