This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
If I have a folder that has multiple .jar files inside Is it possible to set the classpath with one declaration i.e. set classpath=c:\jar\*.*; instead of: set classpath=c:\jar\jar1.jar; c:\jar\jar2.jar;etc...
Frank Carver
Sheriff
Joined: Jan 07, 1999
Posts: 6913
posted
0
No, but with any Java 2 system, you can put any jars you like in the lib/ext directory of your JRE and they will automatically be picked up as if ther are in the classpath. This is how I load most of my jars.