$> java AppRun
Java adamantly requires the .jar files to only be in the endorsed\ directory
for this to work.. But I would like my application to run with the .jar
files being in the same directory as the application *without* having them
in j2sdk/jre/lib/endorsed:
$> java -classpath . AppRun
(For instance, if AppRun.java and AppRun.class are in C:\work, I want to be
able to move all the required .jar files currently in endorsed\ to inside
C:\work and still get the application to run).
Any suggestions?
Thanks!
Krishnan
java -Djava.endorsed.dirs="C:\work\endorsed" AppRun
Best regards,
Hans
--
Hans Kratz
Omnicore Software
http://www.omnicore.com
Very nice, thank you.
-Krishnan