Can someone help me on how to create an executable file on java?
I made some applications in java but my problem is, I need to compile my program everytime I want them to run ... What I want is to compile my program once and then just execute the executable file everytime I want to run...
What you want is an executable .jar file...
All it is, is all your already compiled .class files Zipped in one icon, which executes the .class which contains your main method... Basically, it's like an .exe file but with a .jar extension, for java...