码迷,mamicode.com
首页 > 编程语言 > 详细

Json串和java对象进行转时

时间:2014-07-16 21:49:42      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   2014   

bubuko.com,布布扣json-lib-xxx.jar
ezmorph-xxx.jar  //=============>依赖包

JsonConfig config = new JsonConfig();//有选择性的过滤掉一些属性值

 JSONUtils.getMorpherRegistry().registerMorpher( new DateMorpher(new String[] { "yyyy-MM-dd" }));//注册一个json转为java.util.date的日期格式

 JSONObject o = JSONObject.fromObject(jsonString, config);
  if (clazz == null) {
   return (T) JSONObject.toBean(o);
  } else {
   return (T) JSONObject.toBean(o, clazz);
  }

=====================================================================================================

public static void main(String[] args) {
Map map=new HashMap();
map.put("我","妹");
map.put("擦","哇");
map.put("你","呀");
JSONObject json = JSONObject.fromObject(map);
System.out.println(json);
}

輸出的結果 {"我":"妹","擦":"哇","你":"呀"}

然后测试toBean方法的类
import net.sf.json.JSONObject;

public class ToBeanTest {

public static void main(String[] args) {

String json = "{id:‘1001‘,name:‘张三‘,age:‘22‘}";
Student stu = new Student();
JSONObject obj = JSONObject.fromObject(json);
stu = (Student)JSONObject.toBean(obj, Student.class);
System.out.println(stu);
}

}
输出结果为1001, 张三, 22

Json串和java对象进行转时,布布扣,bubuko.com

Json串和java对象进行转时

标签:style   blog   http   java   color   2014   

原文地址:http://www.cnblogs.com/mingtian521/p/3835672.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!