>I realized, however, that all compiling I've done in the past has been done >without any CLASSPATH definition. Now, it's as if the compiler no longer >knows to look in the working directory for other classes, but only in the >directories defined by CLASSPATH. Do I have to specify every single >directory I may be working in?
Correct. I think ever since jdk1.2, you did not have to use a classpath. When you do not set your classpath, it will have all the basics, including your current directory. However, once you start using the classpath, you need to add everything to your classpath. That means all the files like tools.jar, but also your current directory. Frans ___________________________________________________________________________ To unsubscribe, send email to [EMAIL PROTECTED] and include in the body of the message "signoff SERVLET-INTEREST". Archives: http://archives.java.sun.com/archives/servlet-interest.html Resources: http://java.sun.com/products/servlet/external-resources.html LISTSERV Help: http://www.lsoft.com/manuals/user/user.html
