JsonUtils工具类 把java对象转成Json串的工具类

前端之家收集整理的这篇文章主要介绍了JsonUtils工具类 把java对象转成Json串的工具类前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

依赖包

json-lib-2.4-jdk15.jar 可以到http://download.csdn.net/detail/sigangjun/5915019下载


编写Util类

  1. package cn.sigangjun.util;
  2.  
  3. import java.text.SimpleDateFormat;
  4. import java.util.ArrayList;
  5. import java.util.Date;
  6. import java.util.HashMap;
  7. import java.util.List;
  8. import java.util.Map;
  9.  
  10. import net.sf.json.JSONObject;
  11. import net.sf.json.JsonConfig;
  12. import net.sf.json.processors.JsonValueProcessor;
  13. import cn.sigangjun.model.People;
  14.  
  15. /**
  16. * <p>Title: json util</p>
  17. * <p>Description: this util can covert object to jsonstring</p>
  18. * @since 2013-8-12 下午3:32:19
  19. * @version 1.0
  20. * @author <a style='color:red' href='http://blog.csdn.net/sigangjun'>sigangjun</a>
  21. */
  22. public class JsonUtils {
  23. static JsonConfig jsonConfig = new JsonConfig();
  24. static {
  25.  
  26. jsonConfig.registerJsonValueProcessor(Date.class,new JsonValueProcessor(){
  27.  
  28. @Override
  29. public Object processArrayValue(Object value,JsonConfig arg1) {
  30. try {
  31. if (value instanceof Date) {
  32. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  33. return sdf.format((Date) value);
  34. }
  35. return value == null ? "" : value.toString();
  36. } catch (Exception e) {
  37. return "";
  38. }
  39. }
  40.  
  41. @Override
  42. public Object processObjectValue(String arg0,Object arg1,JsonConfig arg2) {
  43. try {
  44. if (arg1 instanceof Date) {
  45. SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
  46. return sdf.format((Date) arg1);
  47. }
  48. return arg1 == null ? "" : arg1.toString();
  49. } catch (Exception e) {
  50. return "";
  51. }
  52. }
  53. });
  54. }
  55.  
  56. @SuppressWarnings("rawtypes")
  57. public static String printJsonForTree(List list) {
  58. Map<String,Object> map = new HashMap<String,Object>();
  59. map.put("total",list.size());
  60. map.put("rows",list);
  61. JSONObject json = JSONObject.fromObject(map,jsonConfig);
  62. return json.toString();
  63.  
  64. }
  65.  
  66. /**
  67. * 输出Json串
  68. *
  69. * @param list 业务集
  70. * @param total 总数
  71. * @return String Json串
  72. */
  73. public static String outJsonString (List<?> list,Integer total) {
  74. if (list == null || total == null) {
  75. return "";
  76. }
  77. Map<String,total);
  78. map.put("rows",jsonConfig);
  79. return json.toString();
  80. }
  81. /**
  82. * @param args
  83. */
  84. public static void main(String[] args) {
  85. /*List<Business> list = Lists.newArrayList();
  86. Business bb = new Business();*/
  87. List<People> alllist = new ArrayList<People>();
  88. People p1 = new People("000","我是facher",new Date(),null,null);
  89. List<People> childrenlist = new ArrayList<People>();
  90. People p3 = new People("001","我是男孩",null);
  91. People p4 = new People("002","我是女孩",null);
  92. Map<String,People> friends = new HashMap<String,People>();
  93. People p5 = new People("003","我是朋友1",null);
  94. People p6 = new People("004","我是朋友2",null);
  95. friends.put("111",p5);
  96. friends.put("222",p6);
  97. People p2 = new People("123","打印我吧!",p1,childrenlist,friends);
  98. alllist.add(p2);
  99. System.out.println(printJsonForTree(alllist));
  100.  
  101. }
  102. public static String beanToJson(Object bean) {
  103. JSONObject obj = JSONObject.fromObject(bean);
  104. return obj.toString();
  105. }
  106.  
  107. }

编写People类

  1. package cn.sigangjun.model;
  2.  
  3. import java.io.Serializable;
  4. import java.util.Date;
  5. import java.util.List;
  6. import java.util.Map;
  7.  
  8. /**
  9. * <p>Title: People class</p>
  10. * <p>Description: People Class</p>
  11. * @since 2013-8-12 下午3:39:38
  12. * @version 1.0
  13. * @author <a style='color:red' href='http://blog.csdn.net/sigangjun'>sigangjun</a>
  14. */
  15. public class People implements Serializable {
  16.  
  17. private static final long serialVersionUID = 1L;
  18. private String id;
  19. private String name;
  20. private Date birthday;
  21. private People father;
  22. private List<People> children;
  23. private Map<String,People> friends;
  24.  
  25. public String getId() {
  26. return id;
  27. }
  28.  
  29. public void setId(String id) {
  30. this.id = id;
  31. }
  32.  
  33. public String getName() {
  34. return name;
  35. }
  36.  
  37. public void setName(String name) {
  38. this.name = name;
  39. }
  40.  
  41. public Date getBirthday() {
  42. return birthday;
  43. }
  44.  
  45. public void setBirthday(Date birthday) {
  46. this.birthday = birthday;
  47. }
  48.  
  49. public People getFather() {
  50. return father;
  51. }
  52.  
  53. public void setFather(People father) {
  54. this.father = father;
  55. }
  56.  
  57. public List<People> getChildren() {
  58. return children;
  59. }
  60.  
  61. public void setChildren(List<People> children) {
  62. this.children = children;
  63. }
  64.  
  65. public Map<String,People> getFriends() {
  66. return friends;
  67. }
  68.  
  69. public void setFriends(Map<String,People> friends) {
  70. this.friends = friends;
  71. }
  72.  
  73. public static long getSerialversionuid() {
  74. return serialVersionUID;
  75. }
  76.  
  77. public People(String id,String name,Date birthday,People father,List<People> children,Map<String,People> friends) {
  78. super();
  79. this.id = id;
  80. this.name = name;
  81. this.birthday = birthday;
  82. this.father = father;
  83. this.children = children;
  84. this.friends = friends;
  85. }
  86.  
  87. public People() {
  88. super();
  89. // TODO Auto-generated constructor stub
  90. }
  91.  
  92. }

运行结果

  1. {"total":1,"rows":[{"birthday":"2013-08-12 15:43:57","children":[],"father":{"birthday":"2013-08-12 15:43:57","father":null,"friends":null,"id":"000","name":"我是facher"},"friends":{"222":{"birthday":"2013-08-12 15:43:57","id":"004","name":"我是朋友2"},"111":{"birthday":"2013-08-12 15:43:57","id":"003","name":"我是朋友1"}},"id":"123","name":"打印我吧!"}]}

猜你在找的Json相关文章