clojure.contrib.duck-streams FileNotFoundException,为什么?
用户=> (使用'[clojure.contrib.duck-streams]) java.io.FileNotFoundException:无法找到 clojure/contrib/duck_streams__in 类路径上的 it.class 或 clojure/contrib/duck_streams.clj: (NO_SOURCE_FILE:0)
Clojure.contrib 位于 CLASSPATH 中,但仍然抛出异常。我还需要其他罐子吗?
user=> (use '[clojure.contrib.duck-streams])
java.io.FileNotFoundException: Could not locate clojure/contrib/duck_streams__in
it.class or clojure/contrib/duck_streams.clj on classpath: (NO_SOURCE_FILE:0)
Clojure.contrib is in CLASSPATH still it is throwing Exception. Do I need some other Jar?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请改用 clojure.java.io,它包含在 1.2 中。
Use
clojure.java.io
instead, it's included with 1.2.我强烈建议使用 leiningen 来解决这个问题。
尝试使用 lein repl 命令来获取具有工作类路径的快速 repl。
根据此消息:
http://osdir.com/ml/clojure/2010- 10/msg00834.html
clojure.contrib.duck-streams 已被弃用。
I highly recommend using leiningen to sort this out.
try the
lein repl
command to get a quick repl with a working classpath.According to this message:
http://osdir.com/ml/clojure/2010-10/msg00834.html
clojure.contrib.duck-streams has been deprecated.