Logo

Programming-Idioms

  • Java
  • Lua

Idiom #92 Save object into JSON file

Write the contents of the object x into the file data.json.

cjson = require("cjson")
file = io.open("data.json", "w")
file:write(cjson.encode(x))
file:close()

"w": open for writing
(require '[clojure.java.io :refer [file]])
(require '[jsonista.core :refer [write-value]])
(write-value (file "data.json") x)

New implementation...