jar files with JCreator
when I try to create jar file for my simplest program
I receive this output from JCreator:
--Custom Tool: Create Jar File--
Command: "E:\java\bin\jar.exe" cvfm hello.jar manifest.txt *.class
Directory : ""
added manifest
adding: hello.class(in = 419) (out= 292)(deflated 30%)
Process completed.
but when I click on hello.jar nothing respond
MY Program is:
public class hello
{
public static void main (String [] args)
{
System.out.println("HELLO MY WORLD!");
}
}

