-1

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

Deepesh
  • 1
  • 1
  • 1
  • "Any system", you have to go with executable .jar; Windows systems, you can go the .exe route. – Amadan Mar 22 '16 at 05:40

2 Answers2

0

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

Nobody
  • 341
  • 2
  • 6
0

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.

Naj
  • 723
  • 7
  • 17