JAR file generated - need help understanding console output
I have a JAR file generated for a project capable of being run as an applet. Here's the console output when I try to load the jar file as an applet into a webpage:
Java Plug-in 1.6.0_01
Using JRE version 1.6.0_01 Java HotSpot(TM) Client VM
User home directory = C:\Documents and Settings\Joshua
-
c:clear console window
f:finalize objects on finalization queue
g:garbage collect
h:displaythis help message
l:dump classloader list
m:print memory usage
o:trigger logging
p:reload proxy configuration
q:hide console
r:reload policy configuration
s:dump system and deployment properties
t:dump thread list
v:dump thread stack
x:clear classloader cache
0-5: set trace level to <n>
-
load:class ChessBoardGame.class not found.
java.lang.ClassNotFoundException: ChessBoardGame.class
at sun.applet.AppletClassLoader.findClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.applet.AppletClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClass(Unknown Source)
at sun.applet.AppletClassLoader.loadCode(Unknown Source)
at sun.applet.AppletPanel.createApplet(Unknown Source)
at sun.plugin.AppletViewer.createApplet(Unknown Source)
at sun.applet.AppletPanel.runLoader(Unknown Source)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
Caused by: java.io.FileNotFoundException: C:\<snip>\Java\Workspace\BoydChess1.0\ChessBoardGame\class.class (The system cannot find the path specified)
at java.io.FileInputStream.open(Native Method)
at java.io.FileInputStream.<init>(Unknown Source)
at java.io.FileInputStream.<init>(Unknown Source)
at sun.net.www.protocol.file.FileURLConnection.connect(Unknown Source)
at sun.net.www.protocol.file.FileURLConnection.getInputStream(Unknown Source)
at sun.applet.AppletClassLoader.getBytes(Unknown Source)
at sun.applet.AppletClassLoader.access$100(Unknown Source)
at sun.applet.AppletClassLoader$1.run(Unknown Source)
at java.security.AccessController.doPrivileged(Native Method)
... 10 more
The JAR file isn't loading properly, and I assume it's related to the "Caused by: java.io.FileNotFoundException: C:\<snip>\Java\Workspace\BoydChess1.0\ChessBoardGame\class.class (The system cannot find the path specified)" line above. I have the entry point set as ChessBoardGame ... but there is no ChessBoardGame directory - only the .java and .class files. I'm not sure what it's attempting to do while running the .jar file, or how to go about fixing it. I'm using Eclipse to create the .jar, and the entry point class ends with a newline. Any help is appreciated.

