Hi!
I have my program in Java3D with texutres and Swing. How can I make an executable file? So that the program runs by clicking it in windows.
Hi!
I have my program in Java3D with texutres and Swing. How can I make an executable file? So that the program runs by clicking it in windows.
you can make a JAR that is clickalbe with the proper manifest http://java.sun.com/developer/Books/javaprogramming/JAR/basics/
and make it webstartable http://java.sun.com/developer/earlyAccess/javawebstart/
You can create a .bat batch file that runs the appropriate command (java… or javaw…) and then convert it to .exe using one of the converters you can get off the web (I’ve heard of them but haven’t used one yet).