B.Mr.W.
B.Mr.W.

Reputation: 19648

Export Java GUI map from Eclipse

I wrote a Java App - a calculator to convert temperature between Kelvin, Celsius and Fahrenheit.

The app finally works with a bunch of clearly bugs but anyway, my question is how to export my Java App out of Eclipse. So I can single click and open that app without IDE.

Thanks. enter image description here

Upvotes: 0

Views: 665

Answers (2)

slanecek
slanecek

Reputation: 806

You mean an export to a runnable jar file?

File => Export => Java => Runnable Jar file. Then select yout project and main class and done.

Upvotes: 1

Adeeb
Adeeb

Reputation: 1271

You have to create a jar file from your project. Here's a great SO post that shows you how to do it, it also has pictures :-)

Upvotes: 0

Related Questions