Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Rust

Idiom #92 Save object into JSON file

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

extern crate serde_json;
#[macro_use] extern crate serde_derive;

use std::fs::File;
::serde_json::to_writer(&File::create("data.json")?, &x)?

This requires x to implement Deserialize from serde.
(require '[clojure.java.io :refer [file]])
(require '[jsonista.core :refer [write-value]])
(write-value (file "data.json") x)

New implementation...