JSON parser/generator to/from Clojure data structures.
Follows the specification on http://json.org/
Leiningen dependency information:
[org.clojure/data.json "0.2.6"]
Maven dependency information:
<dependency>
<groupId>org.clojure</groupId>
<artifactId>data.json</artifactId>
<version>0.2.6</version>
</dependency>
Gradle dependency information:
compile "org.clojure:data.json:0.2.6"
Other versions:
Example usage:
(ns example
(:require [clojure.data.json :as json]))
To convert to/from JSON strings, use json/write-str
and json/read-str
:
(json/write-str {:a 1 :b 2})
;;=> "{\"a\":1,\"b\":2}"
(json/read-str "{\"a\":1,\"b\":2}")
;;=> {"a" 1, "b" 2}
Note that these operations are not symmetric: converting Clojure data into JSON is lossy.
You can specify a :key-fn
to convert map keys on the way in or out:
(json/read-str "{\"a\":1,\"b\":2}"
:key-fn keyword)
;;=> {:a 1, :b 2}
(json/write-str {:a 1 :b 2}
:key-fn #(.toUpperCase %))
;;=> "{\"A\":1,\"B\":2}"
(json/read-str "{\"a\":1,\"b\":2}"
:key-fn #(keyword "com.example" %))
;;=> {:com.example/a 1, :com.example/b 2}
You can specify a :value-fn
to convert map values on the way in or out.
The value-fn will be called with two arguments, the key and the value, and it returns the updated value.
(defn my-value-reader [key value]
(if (= key :date)
(java.sql.Date/valueOf value)
value))
(json/read-str "{\"number\":42,\"date\":\"2012-06-02\"}"
:value-fn my-value-reader
:key-fn keyword)
;;=> {:number 42, :date #inst "2012-06-02T04:00:00.000-00:00"}
Be aware that :value-fn
only works on maps (JSON objects).
If your root data structure is, for example, a vector of dates, you will need to pre- or post-process it outside of data.json.
clojure.walk may be useful for this.
If you specify both a :key-fn
and a :value-fn
when reading, the value-fn is called after the key has been processed by the key-fn.
The reverse is true when writing:
(defn my-value-writer [key value]
(if (= key :date)
(str (java.sql.Date. (.getTime value)))
value))
(json/write-str {:number 42, :date (java.util.Date. 112 5 2)}
:value-fn my-value-writer
:key-fn name)
;;=> "{\"number\":42,\"date\":\"2012-06-02\"}"
You can also read JSON directly from a java.io.Reader
with json/read
and write JSON directly to a java.io.Writer
with json/write
.
Other options are available. Refer to the API Documentation for details.
master
):key-fn
and :value-fn
permit flexible transformation of values when reading & writing JSON*out*
always uses a PrintWriter.Copyright (c) Stuart Sierra, 2012. All rights reserved. The use and distribution terms for this software are covered by the Eclipse Public License 1.0 (http://opensource.org/licenses/eclipse-1.0.php) which can be found in the file epl-v10.html at the root of this distribution. By using this software in any fashion, you are agreeing to be bound by the terms of this license. You must not remove this notice, or any other, from this software.
Can you improve this documentation? These fine people already did:
Stuart Sierra, Christopher Brown, Alex Miller & puredangerEdit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close