codecamp

Clojure 类库

使Clojure库如此强大的一件事是可用于Clojure框架的库的数量。 我们已经看到在我们早期的例子中使用的许多库用于web测试,web开发,开发基于swing的应用程序,用于连接到MySQL数据库的jdbc库。 以下只是几个更多图书馆的例子。

data.xml中

这个库允许Clojure使用XML数据。 要使用的库版本是org.clojure / data.xml“0.0.8”。 data.xml支持解析和发出XML。 解析函数将从Reader或InputStream读取XML。

下面是 data.xml 的一个例子。

(ns clojure.examples.example
   (use 'clojure.data.xml)
   (:gen-class))
(defn Example []
   (let [input-xml (java.io.StringReader. "<?xml version = "1.0"
      encoding = "UTF-8"?><example><clo><Tutorial>The Tutorial
      value</Tutorial></clo></example>")]
      (parse input-xml)))

#clojure.data.xml.Element{
   :tag :example, :attrs {}, :content (#clojure.data.xml.Element {
      :tag :clo, :attrs {}, :content (#clojure.data.xml.Element {
         :tag :Tutorial, :attrs {},:content ("The Tutorial value")})})}
(Example)

data.json

这个库允许Clojure使用JSON数据。 要使用的库版本是org.clojure / data.json“0.2.6”。

下面是 data.json 的一个例子。

(ns clojure.examples.example
   (:require [clojure.data.json :as json])
   (:gen-class))
(defn Example []
   (println (json/write-str {:a 1 :b 2})))
(Example)

输出

上面的示例输出以下结果:

{"a":1,"b":2}

data.csv

这个库允许Clojure使用'csv'数据。 要使用的库版本是org.clojure / data.csv“0.1.3”。

下面是 data.csv 的一个例子。

(ns clojure.examples.example
   (require '[clojure.data.csv :as csv]
      '[clojure.java.io :as io])
   (:gen-class))
(defn Example []
   (with-open [in-file (io/reader "in-file.csv")]
      (doall
      (csv/read-csv in-file)))
   (with-open [out-file (io/writer "out-file.csv")]
   (csv/write-csv out-file
      [[":A" "a"]
      [":B" "b"]])))
(Example)

在上面的代码中,'csv'函数将首先读取一个名为in-file.csv的文件,并将所有数据放入变量in-file。 接下来,我们使用write-csv函数将所有数据写入一个名为out-file.csv的文件。


Clojure 自动化测试
Clojure的有用资源
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

Clojure Useful Resources

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }