Tutorial or code sample in creating a .exe for windows

Hi all,Can some kind soul guide me to a tutorial / materials / code sample in creating a .exe (for a java program) to run in windows ?My intention is to create a .exe such that when it is clicked, the java program runs.thanks a bundle.
[263 byte] By [merlin_aa] at [2007-11-27 7:55:45]
# 1

Java in not intended to compile into system executables. IMO, you should not do this, let your application remain cross-platform. You can simply make an executable JAR file, which makes your application run with a double-click on any system which have a JRE installed.

Anyway, if you really want to help M$ solidify their work, search the forum. It has been asked and answered several times. You have two options:

1. Bundle a version of JRE with your application, and create an executable file which runs your application on the bundled JRE.

2. Use a native code compiler like ( http://www.excelsior-usa.com/jet.html ).

Also, try these:

http://www.dobysoft.com/products/nativej/

http://www.ej-technologies.com/products/exe4j/overview.html

Arash.Shahkara at 2007-7-12 19:37:11 > top of Java-index,Desktop,Developing for the Desktop...