0

I have developed java Desktop application in eclipse, how to run(use) it in other system that is not having eclipse. I want to install application that i have developed in other systems not having eclipse.

2
  • you can explore your project to .jar file and execute from command line from any system you want. Commented Mar 11, 2016 at 9:07
  • Thank you so much. Commented Mar 12, 2016 at 6:39

2 Answers 2

3

Tu run Java Application you just need Java JRE and yourapp.jar. You can do this as here: http://help.eclipse.org/mars/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2Ftasks%2Ftasks-33.htm or just by build project correctly.

Sign up to request clarification or add additional context in comments.

1 Comment

Thank u so much:-)
1

use maven to package your app: how to create a maven project

the package phase in maven creates a yourApp.jar which can be executed by the jvm. (if installed on the system)

commandline:

java -jar myApp.jar

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.