com.bloxbean.cardano.client.util.JsonUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cardano-client-common Show documentation
Show all versions of cardano-client-common Show documentation
Cardano Client Lib - Common Module
The newest version!
package com.bloxbean.cardano.client.util;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import lombok.extern.slf4j.Slf4j;
@Slf4j
public class JsonUtil {
protected static final ObjectMapper mapper = new ObjectMapper().enable(SerializationFeature.INDENT_OUTPUT);
public static String getPrettyJson(Object obj) {
if(obj == null) return null;
try {
return mapper.writerWithDefaultPrettyPrinter().writeValueAsString(obj);
} catch (JsonProcessingException e) {
log.error("Json parsing error", e);
return obj.toString();
}
}
public static String getPrettyJson(String jsonStr) {
if(jsonStr == null)
return null;
try {
Object json = mapper.readValue(jsonStr, Object.class);
return mapper.writerWithDefaultPrettyPrinter().writeValueAsString(json);
} catch (Exception e) {
return jsonStr;
}
}
public static JsonNode parseJson(String jsonContent) throws JsonProcessingException {
return mapper.readTree(jsonContent);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy