Reputation: 1
I have a very complex java program written with net beans 7.1. It consists of 1 .java file that has a main(), and over 25 supporting .java files (most used for routines inside of tabs). In addition there are 15 different databases (embedded) associated with it. The program is virtually complete, and I need to export this project to a stand-alone Java application (including the databases) that is completely independent of net beans and may run on any system that supports Java. This is intended to be a desktop application, not a web based program.
I am a fairly experienced programmer, however this is my first attempt in writing programs in java. If I could get links that may provide step-by-step procedures and/or examples that would be the most help. Or even better if there are software apps out there that would take the net beans code and generate a executable program.
Any assistance or advice will be greatly appreciated.
Upvotes: 0
Views: 656
Reputation: 11
You must try out a free software named 'JavaExe' which can convert jarfiles (or java classes) directly into .exe Vikrant (India)
Upvotes: 1
Reputation: 23049
When you build it, the stand-alone program should appear in a "dist" folder.
If you have problems with running this program, I am afraid, you have to write your own ant/maven script.
Upvotes: 0