Java后台对JSON格式的处理操作
Posted Evan_wen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java后台对JSON格式的处理操作相关的知识,希望对你有一定的参考价值。
1.将对象转换为JSON字符串,返回值为一个JSON字符串
public static String toJson(Object value) {
try {
return mapper.writeValueAsString(value);
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
2. 将JSON字符串转换为实体对象,返回值为实体对象
public static <T> T toObject(String json, Class<T> valueType) {
Assert.hasText(json);
Assert.notNull(valueType);
try {
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
mapper.setDateFormat(dateFormat);
return mapper.readValue(json, valueType);
} catch (Exception e) {
e.printStackTrace();
}
return null;
以上是关于Java后台对JSON格式的处理操作的主要内容,如果未能解决你的问题,请参考以下文章