exe

Hi everyone

I was wondering if I can get some help here. I have a Java application that I wrote using JCreator. It has a void Main in it so it is a standalone application(I think..). I was wondering how to create an .exe for the application. So that I wouldn't have to go into JCreator and compile it everytime I want to run it. There must be a way.

[363 byte] By [airrazora] at [2007-10-1 23:31:54]
# 1
> I was wondering how to create an .exe for the application.Question has been asked dozens of time before. Search the forum to find other posting on the topic.
camickra at 2007-7-15 14:14:43 > top of Java-index,Java Essentials,Java Programming...
# 2
Once you have compiled the class files, you don't have to recompile them to run them again.And you don't have to create an .exe either.Try creating an executable jar. If JCreator doesn't have a way to do that automatically, then why the hell are you using it?
paulcwa at 2007-7-15 14:14:43 > top of Java-index,Java Essentials,Java Programming...
# 3
You can run a class file with the java command.
Peter-Lawreya at 2007-7-15 14:14:43 > top of Java-index,Java Essentials,Java Programming...
# 4
http://java.sun.com/docs/books/tutorial/jar/index.html
mlka at 2007-7-15 14:14:43 > top of Java-index,Java Essentials,Java Programming...
# 5
Look at this article. It describes all the ways to generate .exe from Java, and what benefits you can have from it. http://www.excelsior-usa.com/articles/java-to-exe.htmlDenis.
htayoda at 2007-7-15 14:14:43 > top of Java-index,Java Essentials,Java Programming...
# 6
Note that that article is on the site of a company that makes a bytecode-to-machine-code compiler, so the article may be a bit biased in that direction.
paulcwa at 2007-7-15 14:14:43 > top of Java-index,Java Essentials,Java Programming...