Jar question

I have a program that runs inside eclipse and works perfectly, handling all exceptions

I made a jar using: jar cvfm classes.jar manifest.mf.txt Coder.class

Coder is the only class I use and it is properly done in the manifest

what can I do to make this jar runnable from windows, like an executable jar kinda thing

I've looked at a bunch of websites so don't point me to one unless it's really realy good

JAR is there on my tools / folder options / file types thing but it still wont run when i double click the jar

[555 byte] By [jeanberna] at [2007-11-27 2:40:40]
# 1
What happens if you try it from the command line? (Try both of these)java -jar classes.jarjava -classpath classes.jar CoderDid you remember to end the manifest file with a blank line?
atmguya at 2007-7-12 3:03:45 > top of Java-index,Desktop,Deploying...
# 2
i figured it outturns out for some reaso there were classes named Coder$1.class and Coder$2.class which also needed to be included int he jarit works now, but why are those even present?
jeanberna at 2007-7-12 3:03:45 > top of Java-index,Desktop,Deploying...
# 3
These are some sort of annoymous inner classes, for example ActionListeners.
atmguya at 2007-7-12 3:03:45 > top of Java-index,Desktop,Deploying...