![JAR search and dependency download from the Maven repository](/logo.png)
panda.bind.json.Jsons Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-core Show documentation
Show all versions of panda-core Show documentation
Panda Core is the core module of Panda Framework, it contains commonly used utility classes similar to apache-commons.
package panda.bind.json;
import java.io.InputStream;
import java.io.Reader;
import java.lang.reflect.Type;
import panda.io.Streams;
import panda.lang.Chars;
import panda.lang.Charsets;
public abstract class Jsons {
public static JsonDeserializer newJsonDeserializer() {
JsonDeserializer jd = new JsonDeserializer();
return jd;
}
public static JsonSerializer newJsonSerializer() {
JsonSerializer js = new JsonSerializer();
return js;
}
public static Object fromJson(InputStream json, String encoding) {
return fromJson(json, encoding, Object.class);
}
public static Object fromJson(Reader json) {
return fromJson(json, Object.class);
}
public static Object fromJson(CharSequence json) {
return fromJson(json, Object.class);
}
public static T fromJson(InputStream json, String encoding, Type type) {
if (json == null) {
return null;
}
Reader r = Streams.toReader(json, encoding);
JsonDeserializer jd = newJsonDeserializer();
return jd.deserialize(r, type);
}
public static T fromJson(InputStream json, Type type) {
return fromJson(json, Charsets.UTF_8, type);
}
public static T fromJson(Reader json, Type type) {
if (json == null) {
return null;
}
JsonDeserializer jd = newJsonDeserializer();
return jd.deserialize(json, type);
}
public static T fromJson(CharSequence json, Type type) {
if (json == null) {
return null;
}
JsonDeserializer jd = newJsonDeserializer();
return jd.deserialize(json, type);
}
public static String toJson(Object value) {
JsonSerializer js = newJsonSerializer();
return js.serialize(value);
}
public static String toJson(Object value, boolean pretty) {
JsonSerializer js = newJsonSerializer();
js.setPrettyPrint(pretty);
return js.serialize(value);
}
public static String toJson(Object value, int indent) {
JsonSerializer js = newJsonSerializer();
js.setIndentChar(Chars.SPACE);
js.setIndentFactor(indent);
return js.serialize(value);
}
public static void toJson(Object value, Appendable writer) {
JsonSerializer js = newJsonSerializer();
js.serialize(value, writer);
}
public static void toJson(Object value, Appendable writer, boolean pretty) {
JsonSerializer js = newJsonSerializer();
js.setPrettyPrint(pretty);
js.serialize(value, writer);
}
public static void toJson(Object value, Appendable writer, int indent) {
JsonSerializer js = newJsonSerializer();
js.setIndentChar(Chars.SPACE);
js.setIndentFactor(indent);
js.serialize(value, writer);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy