/trunk/Sunney/src/org/sunney/help/util/JsonUtil.java

https://gitlab.com/BGCX261/zhoukui-java-xltc-svn-to-git · Java · 116 lines · 64 code · 15 blank · 37 comment · 2 complexity · d5f1980d760153e49ae1d615b1467872 MD5 · raw file

  1. package org.sunney.help.util;
  2. import java.util.HashMap;
  3. import java.util.List;
  4. import java.util.Map;
  5. import org.apache.commons.logging.Log;
  6. import org.apache.commons.logging.LogFactory;
  7. import com.alibaba.fastjson.JSON;
  8. import com.alibaba.fastjson.serializer.JSONSerializer;
  9. import com.alibaba.fastjson.serializer.PropertyFilter;
  10. import com.alibaba.fastjson.serializer.SerializeWriter;
  11. /**
  12. * @author fisher
  13. * @description json工具包
  14. * @date 2011-8-9
  15. */
  16. public class JsonUtil {
  17. private static final Log log = LogFactory.getLog(JsonUtil.class);
  18. /**
  19. * @description 将java对象序列化为json字符串
  20. * @param Object
  21. * @return String
  22. */
  23. public static final String serialize(Object o) {
  24. try {
  25. String jsonStr = JSON.toJSONString(o);
  26. log.debug("The jsonstr is:" + jsonStr);
  27. return jsonStr;
  28. } catch (Exception e) {
  29. log.debug("Serialize java obejct to jsonStr error!,caused by:", e);
  30. return null;
  31. }
  32. }
  33. /**
  34. * @description 自定义序列化,当isInclude为true,序列化后的字符串
  35. * 只包含propertyFilter中与对象所对应的属性名,反之,
  36. * 则排除propertyFileter中得属性名
  37. * 例如: User u=new User();
  38. * u.setName('hhh');
  39. * u.setId('123');
  40. * serialize(u,new String[]{'name'},true);
  41. * 结果为:
  42. * {"name":"hhh"}
  43. * @param Object o
  44. * @param propertyFilter 属性过滤器
  45. * @param isInclude 是否包含filter中得属性
  46. * @return
  47. */
  48. public final static String serialize(Object o, final String[] propertyFilter,
  49. final boolean isInclude) {
  50. try {
  51. PropertyFilter filter = new PropertyFilter() {
  52. public boolean apply(Object source, String name, Object value) {
  53. for (String property : propertyFilter) {
  54. if(name.equals(property)){
  55. return isInclude;
  56. }
  57. }
  58. return !isInclude;
  59. }
  60. };
  61. SerializeWriter out = new SerializeWriter();
  62. JSONSerializer serializer = new JSONSerializer(out);
  63. serializer.getPropertyFilters().add(filter);
  64. serializer.write(o);
  65. String jsonStr=out.toString();
  66. log.debug("The jsonstr is:" + jsonStr);
  67. return jsonStr;
  68. } catch (Exception e) {
  69. log.debug("Serialize java obejct to jsonStr error!,caused by:", e);
  70. return null;
  71. }
  72. }
  73. /**
  74. * @description 将json字符串反序列化成java对象
  75. * @param jsonStr
  76. * @param clazz
  77. * @return Object
  78. */
  79. public static final <T> Object deserialize(String jsonStr, Class<T> clazz) {
  80. try {
  81. return JSON.parseObject(jsonStr, clazz);
  82. } catch (Exception e) {
  83. log.debug("Deserialize jsonStr to Object error!,caused by:", e);
  84. return null;
  85. }
  86. }
  87. /**
  88. * @description 将JSON字符串反序列化成List数组
  89. * @param jsonStr
  90. * @param clazz
  91. * @return List
  92. */
  93. public static final <T> List<T> parseArray(String jsonStr, Class<T> clazz) {
  94. try {
  95. return JSON.parseArray(jsonStr, clazz);
  96. } catch (Exception e) {
  97. log.debug("Deserialize jsonStr to Object error!,caused by:", e);
  98. return null;
  99. }
  100. }
  101. }