re: Java Cocoa and 3rd Party JARs
re: Java Cocoa and 3rd Party JARs
- Subject: re: Java Cocoa and 3rd Party JARs
- From: Andre John Mas <email@hidden>
- Date: Mon, 2 Jul 2001 11:40:23 -0400
If you want to be able to reference classes in a JAR that are not
in the classpath, or any system defined directory, then you are
going to have to deal with class loaders. The one that is the
easiest to use is URLClassLoader in the java.url package. The
way it works is that your pass the URLs of the JARs to the
class loader and then use it to provide you with you classes,
via the FindClass method if I remember rightly. Anyhow if you
check out the java docs, or the javasoft.com website you
should be able to find more info on the subject.
Andre
--
mailto:email@hidden