“java -classpath .:”是什么意思?意思是?

发布于 2024-11-04 12:06:59 字数 356 浏览 0 评论 0原文

文档中没有提到这一点 ,但是在没有 : 的情况下调用它时,我得到了 ClassNotFoundException。

全线:

java -classpath .:soy-20100708.jar HelloWorld

但这也有效......

java -classpath :soy-20100708.jar HelloWorld

There is no mention of this in the documentation, but I get a ClassNotFoundException when calling it without the :.

Full line:

java -classpath .:soy-20100708.jar HelloWorld

This works too though...

java -classpath :soy-20100708.jar HelloWorld

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

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

发布评论

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

评论(3

人│生佛魔见 2024-11-11 12:07:22

这 ”。”表示也搜索当前目录,“:”是路径分隔符。正如此网站中所述,分隔符与平台相关:

CLASSPATH 分隔符与平台相关。你可以
也可以通过系统属性来发现它。通常是;
或者 :。您必须将当前目录明确地放在
类路径。

The "." means the current directory is searched too, the ":" is your path separator. As described on this website, the separator is platform-dependent:

The CLASSPATH separator character is platform dependent. You can
discover it with the system properties as well. It will usually be ;
or :. You must put ., the current directory, explicitly on the
CLASSPATH.

挽清梦 2024-11-11 12:07:18

冒号“:”在unix环境下是路径分隔符,而在windows下分号“;”分隔路径。即你可以写:

java -classpath a.jar:b.jar OR java -classpath a.jar;b.jar

它会加载两个 jar 到路径。
而句点“.”句点代表当前目录。请注意,目录仅搜索 *.class 文件,而不搜索包。

以“:”开头的版本没有被文档覆盖(据我所知),所以它可能只是偶然工作(可能将当前目录添加到类路径)

编辑:
我刚刚发现, dir/* 找到 JAVA 6 中 dir 中的所有 jar

The colon ":" is path separator in unix environment, while on windows the semicolon ";" separates the path. i.e. you can write:

java -classpath a.jar:b.jar OR java -classpath a.jar;b.jar

And it loads two jars to path.
While period "." period stands for current directory. Beware that directories are search only for *.class files not packages.

the version starting with ":" is not covered by documentation (as far as i know) so it just probably works by accident (pobably adding current dir to classpath aswel)

EDIT:
I just found out, that dir/* finds all jars in dir in JAVA 6

又爬满兰若 2024-11-11 12:07:16

: 用于分隔类路径条目。

因此 .:soy-20100708.jar 的意思是“在当前目录和 soy-20100708.jar 内部搜索”。

第二个变体“:soy-20100708.jar”没有特殊含义(格式错误)。它可能可以以某种方式解释,但我不知道有什么特殊含义。

您可以发布 jar 文件的内容吗?它包含哪些文件以及在哪些目录中?

: is used to separate classpath entries.

Therefore .:soy-20100708.jar means "search in the current directory and inside soy-20100708.jar".

The second variant ":soy-20100708.jar" has no special meaning (it is malformed). It might be interpreted somehow, but I'm not aware of any special meaning.

Can you post the content of the jar file? Which files does it contain and in which directories?

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