View Single Post
  #3 (permalink)  
Old 07-13-2008, 06:46 PM
Norm's Avatar
Norm Norm is offline
Senior Member
 
Join Date: Jun 2008
Location: SouthWest Missouri, USA
Posts: 2,229
Rep Power: 4
Norm is on a distinguished road
Default
I assume this is a runtime error message that you get when you try to execute your program using the java command.
Where is the class that the jvm can't find? Is that class on the classpath, perhaps in a jar file? If not, it needs to be.

java -classpath <jarfile(s)>;. <main-program>
Reply With Quote