import java.io.IOException;
import java.util.Properties;
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.json.JsonMapper;
import com.fasterxml.jackson.dataformat.javaprop.JavaPropsMapper;
import com.fasterxml.jackson.dataformat.xml.XmlMapper;
import com.fasterxml.jackson.dataformat.yaml.YAMLMapper;
/**
* JsonNodeUtils conversion tool
*
* @author 00fly
*
*/
public class JsonNodeUtils
{
private static JavaPropsMapper javaPropsMapper = new JavaPropsMapper();
private static JsonMapper jsonMapper = new JsonMapper();
private static XmlMapper xmlMapper = new XmlMapper();
private static YAMLMapper yamlMapper = new YAMLMapper();
// Convert JsonNode objects to JSON, PROPERTIES, XML, YAML
/**
* jsonNode to json string
*
* @param jsonNode
* @return
*/
public static String jsonNodeToJson(JsonNode jsonNode)
{
return jsonNode.toPrettyString();
}
/**
* jsonNode to properties string
*
* @param jsonNode
* @return
* @throws IOException
*/
public static String jsonNodeToPropsText(JsonNode jsonNode)
throws IOException
{
return javaPropsMapper.writeValueAsString(jsonNode);
}
/**
* jsonNode to properties object
*
* @param jsonNode
* @return
* @throws IOException
*/
public static Properties jsonNodeToProperties(JsonNode jsonNode)
throws IOException
{
return javaPropsMapper.writeValueAsProperties(jsonNode);
}
/**
* jsonNode to xml string
*
* @param jsonNode
* @return
* @throws IOException
*/
public static String jsonNodeToXml(JsonNode jsonNode)
throws IOException
{
return xmlMapper.writerWithDefaultPrettyPrinter().writeValueAsString(jsonNode);
}
/**
* jsonNode to yaml
*
* @param jsonNode
* @return
* @throws IOException
*/
public static String jsonNodeToYaml(JsonNode jsonNode)
throws IOException
{
return yamlMapper.writeValueAsString(jsonNode);
}
// Convert JSON, PROPERTIES, XML, YAML to JsonNode objects
/**
* json to JsonNode
*
* @param jsonText
* @return
* @throws IOException
*/
public static JsonNode jsonToJsonNode(String jsonText)
throws IOException
{
return jsonMapper.readTree(jsonText);
}
/**
* properties object to JsonNode
*
* @param properties
* @return
* @throws IOException
*/
public static JsonNode propsToJsonNode(Properties properties)
throws IOException
{
return javaPropsMapper.readPropertiesAs(properties, JsonNode.class);
}
/**
* properties string to JsonNode
*
* @param propText
* @return
* @throws IOException
*/
public static JsonNode propsToJsonNode(String propText)
throws IOException
{
return javaPropsMapper.readTree(propText);
}
/**
* xml to JsonNode
*
* @param xmlContent
* @return
* @throws IOException
*/
public static JsonNode xmlToJsonNode(String xmlContent)
throws IOException
{
return xmlMapper.readTree(xmlContent);
}
/**
* yaml to JsonNode
*
* @param yamlContent
* @return
* @throws IOException
*/
public static JsonNode yamlToJsonNode(String yamlContent)
throws IOException
{
return yamlMapper.readTree(yamlContent);
}
}