I'm guessing by saying Windows Explorer, you mean, for example,
opening My Documents and double clicking something and it runs. Make
a self executable jar file.
Jar your classes and include a manifest.mf file. In the manifest file
you need to state the main class and (for packages) the class path:
Main-Class: package/Application
Class-Path: package
Put the manifest file in a folder named META-INF and your package
folder in the same folder. I place these in a folder I made just for
jarring (work/META-INF and work/package). Navigate to the folder with
the meta and package folder (work in my example). Then at the command
line for this folder type:
jar cvmf META-INF/manifest.mf jarFile.jar .
Or, use JavaJar from Pivotonic (
http://www.pivitonic.com).
Then, the person needs the JVM to run the jar. Hope this helps.
Kyle