What's up all? I've been coding java for a while, but first time I'm really getting into distributed apps outside of a set working environment. I wrote a very basic GUI app that runs a few SQL statements against a database with JDK 1.4. I am going to be distributing this app to a group of users who are using JRE 1.1.8. They do not want to update their JVM. So, I went out and go the necessary lib files for my app: swingall.jar, collections.jar, classes.zip, etc.... I run ant ant script against the java files and it builds the jar file fine for me. No problem compiling. However, when I try to run it, I keep getting the same error.
Class not found: org.ggg.fse.gui.MainDesktop.
I'm using jre.exe and calling org.ggg.fse.gui.MainDesktop as my class file. Examining my jar file, I can see that the class file is in there and is in the exact package I specified. If I run this with Java.exe in JVM 1.3 or 1.4, it runs fine. Is there something I'm missing since I'm running with JRE in JVM 1.1.8? BTW, I AM including the jar file in the command line arguement -cp, so I don't think it 's that... Any ideas?? Thanks a lot..
Doug
Class not found: org.ggg.fse.gui.MainDesktop.
I'm using jre.exe and calling org.ggg.fse.gui.MainDesktop as my class file. Examining my jar file, I can see that the class file is in there and is in the exact package I specified. If I run this with Java.exe in JVM 1.3 or 1.4, it runs fine. Is there something I'm missing since I'm running with JRE in JVM 1.1.8? BTW, I AM including the jar file in the command line arguement -cp, so I don't think it 's that... Any ideas?? Thanks a lot..
Doug