Skip to content

Over-Run/json

Repository files navigation

json GitHub

Java CI with Gradle
GitHub all releases

GitHub issues GitHub pull requests
GitHub closed issues GitHub closed pull requests

GitHub release (latest SemVer) Maven Central Sonatype Nexus (Releases)

Java Version

GitHub Discussions

JSON for Java:coffee:.

If there are any bugs, tell us!

Use for depending on

dependencies {
    implementation "io.github.over-run:json:0.2.0"
}

Example

import org.overrun.json.*;

import java.io.*;

public class Example {
    public static void main(String[] args) {
        var json = new Json(true);
        try (var w = new FileWriter("ex.json");
             var bw = new BufferedWriter(w)) {
            json.toJson(
                ofObj("name",
                    ofStr("name", "value")
                ),
                bw
            );
        }
    }
}

Who are using