java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > 后台处理json数据

浅谈Java后台对JSON格式的处理操作

投稿:jingxian

下面小编就为大家带来一篇浅谈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格式的处理操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文