| Author |
Classpath and Javac .......
|
Jon Lee
Ranch Hand
Joined: Mar 04, 2005
Posts: 134
|
|
Given a directory tree like this: test .|-src ....|-project.java when I run [javac -classpath .\src project.java] in the dir of test, it returned [error: cannot read: project.java 1 error] Why can't javac find the project.java file??? Anyone can help?? [ August 05, 2006: Message edited by: Jon Lee ]
|
SCJP 5.0 - 98% (2007)<br />SCWCD 1.4 - 97% (2007)
|
 |
Naseem Khan
Ranch Hand
Joined: Apr 25, 2005
Posts: 809
|
|
Is this project.java in some package? Naseem [ August 05, 2006: Message edited by: Naseem Khan ]
|
Asking Smart Questions FAQ - How To Put Your Code In Code Tags
|
 |
Jon Lee
Ranch Hand
Joined: Mar 04, 2005
Posts: 134
|
|
No, there is no package definition in project.java. Even if there is, it is not a concern of javac. The problem here is that javac can not find the project.java file. It seems the classpath option has no effect....dont know why...
|
 |
Naseem Khan
Ranch Hand
Joined: Apr 25, 2005
Posts: 809
|
|
No, there is no package definition in project.java. Even if there is, it is not a concern of javac.
project.java is in src, so compile it from src directory. Naseem [ August 05, 2006: Message edited by: Naseem Khan ]
|
 |
Jon Lee
Ranch Hand
Joined: Mar 04, 2005
Posts: 134
|
|
Now I know why. classpath option is for searching the .class files, not the .java file... Thnx for your comments, mate...
|
 |
 |
|
|
subject: Classpath and Javac .......
|
|
|