| Author |
Program works fine in IDE, but not in JAR.
|
Tarek Khojah
Ranch Hand
Joined: Jul 21, 2007
Posts: 58
|
|
I remember I had this problem when it came to files, where I had to use getResourceAsStream() Now I'm facing the same problem with: Class.forName("org.hsqldb.jdbcDriver"); Throwing a class not found exception. I have no clue on what to do, please help.
|
 |
Joe Ess
Bartender
Joined: Oct 29, 2001
Posts: 8260
|
|
You have a dependency on HSQLDB. Your IDE is resolving it for you, but you also have to tell your JAR how to resolve it. The Java Tutorial chapter on JAR files has a section on how to set the classpath.
|
"blabbing like a narcissistic fool with a superiority complex" ~ N.A.
[How To Ask Questions On JavaRanch]
|
 |
Tarek Khojah
Ranch Hand
Joined: Jul 21, 2007
Posts: 58
|
|
I'm surprised that Eclipse doesn't take care of these things for you. Heh, it probably does and I just don't know how. Thank you for your help, very much appreciated
|
 |
 |
|
|
subject: Program works fine in IDE, but not in JAR.
|
|
|