1

I am aiming to create an EPoS-esque system and was wondering if there was anyway that I could export the code and be able to run it outside of a program like NetBeans (the IDE i will be using to code the program), and on its own separate software?

For example having its own desktop icon that would automatically run the interface i have designed outside of NetBeans.

duffymo
  • 305,152
  • 44
  • 369
  • 561
L.Jones28
  • 31
  • 4
  • It's not only possible, it's the natural order of things. You don't think that people deploy code to production in NetBeans, do you? – duffymo Oct 06 '17 at 11:37
  • @duffymo Obviously not just wasn't sure on ways of going around it so just phrased it like so. – L.Jones28 Oct 08 '17 at 18:08

1 Answers1

1

You can create a JAR file and run it from outside Netbeans. You need to install JRE/JDK in the machine you are willing to run the application on.

For instructions check here: How to create a Jar file in Netbeans

Nabin Bhandari
  • 15,949
  • 6
  • 45
  • 59