1

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?

1 Answers1

-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?

Community
  • 1
  • 1
HarryS
  • 186
  • 1
  • 5
  • 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