(require) 函数的 clojure 类路径问题?

发布于 2024-09-11 21:27:33 字数 500 浏览 4 评论 0原文

CLASSPATH 将“/Users/smcho/Desktop/clojure”作为其路径之一,并且该目录具有文件 hello.clj。

运行 clojure 并运行 (require 'hello) 会给出此错误消息。

java.io.FileNotFoundException: Could not locate hello__init.class or hello.clj on classpath:  (NO_SOURCE_FILE:0)

当我将目录更改为“/Users/.../clojure”并运行相同的命令(需要'hello)时,没有问题。这 。位于 CLASSPATH 中。

跑步

java -cp /Users/smcho/bin/jar/clojure.jar:/Users/smcho/Desktop/clojure clojure.lang.Repl

也有效果。

为什么 clojure 在 CLASSPATH 中找不到源代码?

CLASSPATH has the "/Users/smcho/Desktop/clojure" as one of its path, and this directory has the file hello.clj.

Running clojure, and running (require 'hello) give this error message.

java.io.FileNotFoundException: Could not locate hello__init.class or hello.clj on classpath:  (NO_SOURCE_FILE:0)

When I change directory to "/Users/.../clojure", and run the same (require 'hello), there's no problem. The . is on the CLASSPATH.

Running

java -cp /Users/smcho/bin/jar/clojure.jar:/Users/smcho/Desktop/clojure clojure.lang.Repl

also works.

Why clojure can't find the source on the CLASSPATH?

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

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

发布评论

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

评论(2

与酒说心事 2024-09-18 21:27:33

就像 Alex 提到的,如果您使用 -cp 参数启动 java,则不会引用 CLASSPATH 环境。 而不是

java -cp /Users/smcho/bin/jar/clojure.jar clojure.lang.Repl

使用:

java -cp /Users/smcho/bin/jar/clojure.jar:$CLASSPATH clojure.lang.Repl

因此,您可以从 Clojure repl 中检查 java 类路径,

(doseq [p (.getURLs (java.lang.ClassLoader/getSystemClassLoader))] (println (.getPath p)))

Like Alex mentioned, if you start java with the -cp argument, then the CLASSPATH environment is not referenced. So, instead of

java -cp /Users/smcho/bin/jar/clojure.jar clojure.lang.Repl

use

java -cp /Users/smcho/bin/jar/clojure.jar:$CLASSPATH clojure.lang.Repl

You can examine your java classpath from within the Clojure repl:

(doseq [p (.getURLs (java.lang.ClassLoader/getSystemClassLoader))] (println (.getPath p)))
橘味果▽酱 2024-09-18 21:27:33

您没有指定第一个示例使用的命令行,但请注意,如果使用 -cp 标志,则不会引用 CLASSPATH 环境变量。

You didn't specify what commandline you used for the first example, but note that if you use the -cp flag, the CLASSPATH environment variable is not referenced.

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