浅谈Java后台对JSON格式的处理操作
程序员文章站
2024-03-12 08:25:38
1. 将对象转换为json字符串,返回值为一个json字符串
public static string tojson(object value) {
t...
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格式的处理操作就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: PHP数组内存利用率低和弱类型详细解读