Logo

Programming-Idioms

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

Idiom #92 Save object into JSON file

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

using System.IO;
using System.Text.Json;
using System.Threading.Tasks;
await File.WriteAllTextAsync("data.json", JsonSerializer.Serialize(x));	

There is a synchronous overload for the WriteAllText method, but it's generally recommended to use async wherever possible.
(require '[clojure.java.io :refer [file]])
(require '[jsonista.core :refer [write-value]])
(write-value (file "data.json") x)

New implementation...