我是CLojure的新手并运行一段简单的代码来测试data.csv package。我正在使用Leiningen并在Windows 7上运行(别无选择)。 Leiningen与Windows安装程序一起安装。 JDE 1.7已安装并可用。
这是我的源文件:
(ns testcsv.core
(:gen-class))
(:require [clojure.data.csv :as csv])
(:require [clojure.java.io :as io]))
(defn add-data-store []
(let [csv-records (csv/parse-csv (slurp "census_data_growth.csv")) ;field-names (nthnext (second csv-records) 3)
]
;; more code to come when this works
))
这是我的project.clj:
(defproject testcsv "0.1.0-SNAPSHOT"
:description "FIXME: write description"
:url "http://example.com/FIXME"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.6.0"]
[org.clojure/data.csv "0.1.2"]]
:main ^:skip-aot powernoodle1.core
:target-path "target/%s"
:profiles {:uberjar {:aot :all}})
我运行了lein deps和lein classpath和lein编译的许多组合。 lein编译的错误是:
java.lang.ClassNotFoundException: clojure.data.csv, compiling:(testcsv/core.clj:4:1)
这似乎意味着它没有找到data.csv jar,这反过来似乎意味着类路径问题。
我错过了一步吗?
我也听说Leiningen在Windows上有类路径问题。有人有具体细节吗?
答案 0 :(得分:4)
:require
需要成为ns
声明的一部分。声明也应该只有一个:require
子句。
(ns testcsv.core
(:gen-class)
(:require [clojure.data.csv :as csv]
[clojure.java.io :as io]))
require
(函数,而不是关键字)可以在ns声明之外使用,主要用于repl用法。它看起来像(require '[clojure.data.csv :as csv])
。
由于关键字的实施细节被重载以用作执行查找的功能,如果(:foo x)
是某个关键字并且:foo
存在,x
绝不是错误,无论如何x
是什么。