javac -多个目录的类路径问题

发布于 2024-08-20 14:52:14 字数 747 浏览 8 评论 0原文

我在 Test.java 中有

c:\sources with

A.java
B.java
com\pluto\B.class
Test.java

c:\packages with

com\pluto\oth\C.class

其中引用了 BC (正确导入),但是当我尝试使用(我在 c:\sources 中)进行编译时,

javac -classpath \.;c:\packages Test.java 

编译器告诉我它找不到 B

但如果我将 B.javac:\sources 移动到另一个目录,然后用

javac -classpath .;c:\packages Test.java 

它进行编译就可以了!

我必须如何设置当前目录? .\. 以及为什么第一个测试失败?

...编译器似乎不想找到类文件 com/pluto/B.class 并且 在我正在编译的当前目录中具有相同名称 B.java 的源文件...

I have

c:\sources with

A.java
B.java
com\pluto\B.class
Test.java

and

c:\packages with

com\pluto\oth\C.class

in Test.java there are references to B and C (correctly imported) but when I try to compile with (I'm in c:\sources)

javac -classpath \.;c:\packages Test.java 

the compiler tell me that it doesn't find B

but if I move B.java from c:\sources to another dir and then I compile with

javac -classpath .;c:\packages Test.java 

it does work!!

How must I set the current dir? . or \. and why do the first test fail?

... it seems as the compiler doesn't want to find a class file com/pluto/B.class and
a source file with the same name B.java in the current dir where I'm compiling...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

惟欲睡 2024-08-27 14:52:14

使用 . 引用当前目录。 \. 指当前驱动器的根目录(例如C:\)。

Use . to refer to the current directory. \. refers to the root directory of the current drive (for example C:\).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文