Possible Duplicate:
How can I convert my Java program to an .exe file?
I need to create an exe file from my java source. My requirement is to use other ways except ant script. Is there any other way to create the exe file.
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.
You need to be clear about your requirements.
There are various ways to create an EXE from Java. The exe could be native compiled or could be using JRE. GCJ is the example of native compiled exe and Launch4J is an example of exe which is using JRE.
Please refer to following link for more details:
How can I convert my Java program to an .exe file?