I was able to run GUI java programs runs on .jar extension file by building it. But I was unable to run a simple program out of net beans by building it! For Example I couldnt run this program below by building it as jar file!
class A{
public static void main(String args[]){
System.out.println("HELLO WORLD");
}
}
How can i run this type of program from .jar extension???