> From: S M [mailto:[EMAIL PROTECTED] > Subject: RE: class path (UNCLASSIFIED) > > see this... no errors... but no class file for the same ???? > > C:\javacode>javac -classpath c:\tomcat\common\lib\servlet.jar HelloWorld.java > C:\javacode>javac -classpath "c:\tomcat\common\lib\servlet.jar" HelloWorld.java > C:\javacode>javac HelloWorld.java
Is the HelloWorld class part of a package? If so, javac will create a directory tree under your current directory using the components of the package name, and you class will be at the end of it. If you still can't find the output class, use -verbose with javac for more information. - Chuck THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY MATERIAL and is thus for use only by the intended recipient. If you received this in error, please contact the sender and delete the e-mail and its attachments from all computers. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
