Is there any other way to create an exe file from a java source other than ant script [closed]?

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?

You could investigate GCJ. The advantage of GCJ is that it is creating a native binary; no JVM is required to run the resulting executable. $ gcj --main=test -o test.

Exe test. Java If you are using Windows, you will probably need to install cygwin to compile using GCJ. Some more verbose tutorials: autexier.de/jmau/dev/gcj.html dreamincode.net/forums/topic/40425-compi... GCJ-compiled applications are significantly larger than their Java-compiled counterparts.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions