MooHa
MooHa

Reputation: 849

How to create an executable program from netbeans

I have just finished developing a small java application on Netbeans IDE. I am curious as to how I can convert that into an executable program from netbeans. So that there would be a short cut icon which when double clicked loads all classes and runs the main function with all relevant jar files also compiled. i.e. JCalender, JTatto, aswell as sqlitejdbc.jar. all of which are in a directory of the project.

Upvotes: 0

Views: 442

Answers (1)

Matt Clark
Matt Clark

Reputation: 28609

Look into Launch4j, a Java program that can turn your .jar file into a standard Windows Executable .exe file while building all references into that single file.

Upvotes: 1

Related Questions