I have an simple java project with a little UI also. I need to convert the entire project into an software which can be ri=un on any system.( Preferably win 7 and win 8).
Thank You in advance
I have an simple java project with a little UI also. I need to convert the entire project into an software which can be ri=un on any system.( Preferably win 7 and win 8).
Thank You in advance
Right click on your project in the package explorer, then click export. Select java in the list, and select as a Runnable Java Jar.
Here's a video that shows you step by step: Export Java program
This goes a bit more in depth about the export options you have. Here
The .jar file that is created for your app can be run on any system with the Java Runtime Environment (JRE) installed but if you want to have an installer like any normal software, try downloading nsis https://sourceforge.net/projects/nsis/, a software that helps you create an installer for your app so that users can install it just like any normal software.