I have a war file of a advance java application created on netbeans. Is it possible to convert this program(application) to desktop application that run on any machine on double click?
Asked
Active
Viewed 475 times
1 Answers
-1
I think you are looking for something like jar
files. Is that what you need? Check this answer Java war vs. jar - what is the difference?
-
I want to convert an advance java program on netbeans to an desktop application that open on any machine on double click. – user3909042 Aug 20 '16 at 06:08
-
Yes. You need to export as a jar file. Enable this option on your IDE: `Project Properties -> Build -> Packaging -> Build JAR after compiling`. Then your Generated jar file will be into the `dist` directory of your project – HarryS Aug 20 '16 at 09:44