in
programming
programming
Tuesday, January 6, 2009 at 04:22PM
It is with that in mind (as well as my fondness for the language itself) that I switched gears and developed the application in Java. With Netbeans (a great Java integrated development environment (IDE)) I was able to create a quick graphical user interface for the program so that he wouldn't have to worry about heading to the command prompt to run the thing. The only downside to Netbeans is that when it builds the application, it gives you a .jar file (container of the program's class files that you wrote) and a directory (named "lib") which contains the interface form information (i.e. information for the graphical user interface you've given your program). All that is fine. However, the annoyance comes in when you wish to send your application to someone. They are restricted to keeping the .jar file (which is executable by double clicking on it) in the same directory as the "lib" folder. If these two things are separated, the program will not run. It's not a huge deal, just a bit annoying. I've been searching for a method of combining those two object into one file so that I'd only have one file to distribute but my search has come up fruitless so far.
programming
Reader Comments