文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Java如何实现操作JSON的便捷工具类

2023-05-30 23:19

关注

这篇文章将为大家详细讲解有关Java如何实现操作JSON的便捷工具类,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

具体如下:

对于JSON数据格式的处理,自开发Java以来,已用过多种JSON的开源工具,用得最好,也用得最High的恐怕要属Google的Gson了。

特别为它写了一个工具类,放入常备工具中,方便使用。下面是为GSON 1.5版本重写的工具类。

依赖包:

slf4j-api-1.6.0.jar
slf4j-log4j12-1.6.0.jar
log4j-1.2.15.jar
gson-1.5.jar

package my.tools;import java.lang.reflect.Type;import java.util.Collection;import java.util.Enumeration;import java.util.Iterator;import org.slf4j.Logger;import org.slf4j.LoggerFactory;import com.google.gson.Gson;import com.google.gson.GsonBuilder;import com.google.gson.reflect.TypeToken;import org.apache.commons.lang.StringUtils;public class JSONUtils {  private static final Logger LOGGER = LoggerFactory.getLogger(JSONUtils.class);    public static final String EMPTY_JSON = "{}";    public static final String EMPTY_JSON_ARRAY = "[]";    public static final String DEFAULT_DATE_PATTERN = "yyyy-MM-dd HH:mm:ss SSS";    public static final double SINCE_VERSION_10 = 1.0d;    public static final double SINCE_VERSION_11 = 1.1d;    public static final double SINCE_VERSION_12 = 1.2d;    public static final double UNTIL_VERSION_10 = SINCE_VERSION_10;    public static final double UNTIL_VERSION_11 = SINCE_VERSION_11;    public static final double UNTIL_VERSION_12 = SINCE_VERSION_12;    public JSONUtils() {    super();  }    public static String toJson(Object target, Type targetType, boolean isSerializeNulls, Double version,      String datePattern, boolean excludesFieldsWithoutExpose) {    if (target == null) return EMPTY_JSON;    GsonBuilder builder = new GsonBuilder();    if (isSerializeNulls) builder.serializeNulls();    if (version != null) builder.setVersion(version.doubleValue());    if (StringUtils.isBlank(datePattern)) datePattern = DEFAULT_DATE_PATTERN;    builder.setDateFormat(datePattern);    if (excludesFieldsWithoutExpose) builder.excludeFieldsWithoutExposeAnnotation();    return toJson(target, targetType, builder);  }    public static String toJson(Object target) {    return toJson(target, null, false, null, null, true);  }    public static String toJson(Object target, String datePattern) {    return toJson(target, null, false, null, datePattern, true);  }    public static String toJson(Object target, Double version) {    return toJson(target, null, false, version, null, true);  }    public static String toJson(Object target, boolean excludesFieldsWithoutExpose) {    return toJson(target, null, false, null, null, excludesFieldsWithoutExpose);  }    public static String toJson(Object target, Double version, boolean excludesFieldsWithoutExpose) {    return toJson(target, null, false, version, null, excludesFieldsWithoutExpose);  }    public static String toJson(Object target, Type targetType) {    return toJson(target, targetType, false, null, null, true);  }    public static String toJson(Object target, Type targetType, Double version) {    return toJson(target, targetType, false, version, null, true);  }    public static String toJson(Object target, Type targetType, boolean excludesFieldsWithoutExpose) {    return toJson(target, targetType, false, null, null, excludesFieldsWithoutExpose);  }    public static String toJson(Object target, Type targetType, Double version, boolean excludesFieldsWithoutExpose) {    return toJson(target, targetType, false, version, null, excludesFieldsWithoutExpose);  }    public static <T> T fromJson(String json, TypeToken<T> token, String datePattern) {    if (StringUtils.isBlank(json)) {      return null;    }    GsonBuilder builder = new GsonBuilder();    if (StringUtils.isBlank(datePattern)) {      datePattern = DEFAULT_DATE_PATTERN;    }    Gson gson = builder.create();    try {      return gson.fromJson(json, token.getType());    } catch (Exception ex) {      LOGGER.error(json + " 无法转换为 " + token.getRawType().getName() + " 对象!", ex);      return null;    }  }    public static <T> T fromJson(String json, TypeToken<T> token) {    return fromJson(json, token, null);  }    public static <T> T fromJson(String json, Class<T> clazz, String datePattern) {    if (StringUtils.isBlank(json)) {      return null;    }    GsonBuilder builder = new GsonBuilder();    if (StringUtils.isBlank(datePattern)) {      datePattern = DEFAULT_DATE_PATTERN;    }    Gson gson = builder.create();    try {      return gson.fromJson(json, clazz);    } catch (Exception ex) {      LOGGER.error(json + " 无法转换为 " + clazz.getName() + " 对象!", ex);      return null;    }  }    public static <T> T fromJson(String json, Class<T> clazz) {    return fromJson(json, clazz, null);  }    public static String toJson(Object target, Type targetType, GsonBuilder builder) {    if (target == null) return EMPTY_JSON;    Gson gson = null;    if (builder == null) {      gson = new Gson();    } else {      gson = builder.create();    }    String result = EMPTY_JSON;    try {      if (targetType == null) {        result = gson.toJson(target);      } else {        result = gson.toJson(target, targetType);      }    } catch (Exception ex) {      LOGGER.warn("目标对象 " + target.getClass().getName() + " 转换 JSON 字符串时,发生异常!", ex);      if (target instanceof Collection<?> || target instanceof Iterator<?> || target instanceof Enumeration<?>          || target.getClass().isArray()) {        result = EMPTY_JSON_ARRAY;      }    }    return result;  }}

关于“Java如何实现操作JSON的便捷工具类”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯