6
I did a program for the company in which I work entirely on JOptionPane
, just so the program would work just by opening real system windows (I thought it would be easier to run officially after the export than one I saw running through the Eclipse text box).
My code is 100% ready and functional, and Eclipse is not indicating any errors. But obviously, no other employee of the company has the Eclipse to keep opening the program for him. I need the program to be open by any computer, Windows or Mac. For that, I would need a version of the program on. exe (for Win) and . dmg (Mac).
Question 1: How do I create these executables? My operating system is Mac and Eclipse is Neon3.
Question 2: What will be the requirements necessary for future users of my software to run it? Just Java installed? Windows/Mac already come with the necessary programs?
Excellent answer! I’m sure I’ll test everything now... But how do I know that all third party libs are being complicated together? How am I sure I’m using some third-party lib, at all? Hahaha, is that I’m a little bit novice yet...
– santosmarco_
@santosmarco_ looks at your project if you have something beyond
JRE System Library
. If not, nothing to worry about, if you do, they’re probably already added in the classpath, and if you look at the option marked in the print atLibrary handling
, the IDE will already include for you automatically :)– user28595
Beauty! Thank you very much!
– santosmarco_