How to run a Java program without the command line.

Is there anyway to create a Java program that runs like most programs do in Windows ,by double clicking on their icons?Thanks,Vance
[152 byte] By [cell@techa] at [2007-10-3 3:04:02]
# 1
Google for "executable jar file"
bckrispia at 2007-7-14 20:54:01 > top of Java-index,Java Essentials,Java Programming...
# 2
yea, make a JAR file. those are double-clickable in windows.also, you can make a BAT file or a SHORTCUT file.3 very easy ways of making them double-clickable.
TuringPesta at 2007-7-14 20:54:01 > top of Java-index,Java Essentials,Java Programming...
# 3
You may also want to google "exe4j" It's a program that makes executables out of java programs. I think that's what you're asking for.
compadrea at 2007-7-14 20:54:01 > top of Java-index,Java Essentials,Java Programming...
# 4
http://www.ej-technologies.com/products/exe4j/overview.htmlLooks kinda cool. Most java-2-exe programs are usually way too expensive and wont work with GUIs and require other dlls/libraries...
TuringPesta at 2007-7-14 20:54:01 > top of Java-index,Java Essentials,Java Programming...
# 5
Thanks everybody for your suggestions. This really will help me.I will look into the exec4j and jar files.Vance
cell@techa at 2007-7-14 20:54:01 > top of Java-index,Java Essentials,Java Programming...