欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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