Possible Duplicate:
How can I convert my java program to an .exe file ?
hi folks,
how to create the exe file of my application in eclipse? please mention the steps to follow.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re just wondering how to run your application outside the Eclipse IDE, then you don’t need an exe. Look for the “Export JAR” option in the menu.
If the export is done properly (with a MANIFEST generated), you should then be able to run the JAR file by double-clicking on it, or from the commandline with “java -jar FILENAME.jar”. Note that this is a platform-independent format.