使用 Jackson 解析 JSON、ObjectMapper解析 JSON、ObjectMapper实现对象转json、Jackson 实现对象转json

工作中经常需要对象转json,json转对象来实现数据的接受或发送,下面是个人使用的工具类:

import com.fasterxml.jackson.annotation.JsonInclude;

import com.fasterxml.jackson.core.JsonEncoding;

import com.fasterxml.jackson.core.JsonFactory;

import com.fasterxml.jackson.core.JsonGenerator;

import com.fasterxml.jackson.core.JsonProcessingException;

import com.fasterxml.jackson.databind.DeserializationFeature;

import com.fasterxml.jackson.databind.MapperFeature;

import com.fasterxml.jackson.databind.ObjectMapper;

import com.fasterxml.jackson.databind.SerializationFeature;

import com.fasterxml.jackson.databind.node.ObjectNode;

import com.wanmagroup.haikang.constants.Constants;

import org.springframework.http.*;

import org.springframework.web.client.RestTemplate;

import java.io.IOException;

import java.text.SimpleDateFormat;

import java.util.Map;

public class JsonUtils {

public static String ctreteJsonString(String key, Object obj) {

try {

// 使用封装的 ObjectMapper 创建 JSON 对象

ObjectMapper objectMapper = createObjectMapper();

SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

objectMapper.setDateFormat(dateFormat);

// 使用封装的 JSON 工厂创建 JSON 生成器

JsonFactory jsonFactory = createJsonFactory();

JsonGenerator jsonGenerator = jsonFactory.createGenerator(System.out, JsonEncoding.UTF8);

// 创建一个 JSON 对象节点

ObjectNode rootNode = createJsonNode(key, obj);

// 使用 JSON 生成器将 JSON 对象写入输出流

objectMapper.writeTree(jsonGenerator, rootNode);

// 完成后关闭生成器

jsonGenerator.close();

// 将 JSON 对象转换为字符串

String userInfoJson = objectMapper.writeValueAsString(rootNode);

System.out.println(userInfoJson);

return userInfoJson;

} catch (IOException e) {

// 处理异常,可以打印错误日志或者采取其他必要的操作

e.printStackTrace();

return null; // 或者返回适当的错误信息

}

}

public static ObjectMapper createObjectMapper() {

ObjectMapper objectMapper = new ObjectMapper();

// 如果需要排除空字段

objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);

// 如果需要排除空字段

objectMapper.setSerializationInclusion(JsonInclude.Include.NON_EMPTY);

objectMapper.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);

return objectMapper;

}

public static ObjectMapper createObjectMapperAll() {

ObjectMapper objectMapper = new ObjectMapper();

// 如果需要排除空字段
objectMapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
// 如果需要排除空字段
objectMapper.setSerializationInclusion(JsonInclude.Include.NON_EMPTY);
objectMapper.configure(SerializationFeature.FAIL_ON_EMPTY_BEANS, false);
//configure() 方法忽略掉"无法识别"的字段
objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);
// 忽略值为默认值的属性
objectMapper.setDefaultPropertyInclusion(JsonInclude.Include.NON_DEFAULT);
// 接受不区分大小写的属性
objectMapper.configure(MapperFeature.ACCEPT_CASE_INSENSITIVE_PROPERTIES, true);

return objectMapper;

}

// 封装 JSON 工厂配置的方法

public static JsonFactory createJsonFactory() {

JsonFactory jsonFactory = new JsonFactory();

jsonFactory.configure(JsonGenerator.Feature.ESCAPE_NON_ASCII, true);

jsonFactory.configure(JsonGenerator.Feature.QUOTE_FIELD_NAMES, true);

return jsonFactory;

}

// 创建包含指定键的 JSON 对象节点

public static <T> ObjectNode createJsonNode(String key, T object) {

ObjectMapper objectMapper = createObjectMapper();

ObjectNode rootNode = objectMapper.createObjectNode();

rootNode.putPOJO(key, object);

return rootNode;

}

//map转spring,组成请求体拼接url即可发送

public static String jsonRequest(Map<String,Object>map){

ObjectMapper objectMapper =JsonUtils.createObjectMapper();

String jsonRequest = "";

try {

jsonRequest = objectMapper.writeValueAsString(map);

} catch (JsonProcessingException e) {

e.printStackTrace();

}

System.out.println(jsonRequest);

return jsonRequest;

}

}


相关推荐
数据知道5 小时前
PostgreSQL实战:详解如何用Python优雅地从PG中存取处理JSON
python·postgresql·json
缘空如是20 小时前
基础工具包之JSON 工厂类
java·json·json切换
墨痕诉清风1 天前
CVS文件转Json格式
json·python3·cvs
数研小生1 天前
1688商品列表API:高效触达批发电商海量商品数据的技术方案
大数据·python·算法·信息可视化·json
devmoon1 天前
快速了解兼容 Ethereum 的 JSON-RPC 接口
开发语言·网络·rpc·json·区块链·智能合约·polkadot
九转成圣1 天前
告别肉眼解析!Java 递归实现 JSON 全路径自动化探测工具
java·自动化·json
JQLvopkk1 天前
C# 实现Http Json格式 Post 、Get 方法请求 winform服务器
http·c#·json
小高Baby@2 天前
JSON、bind、form
数据结构·json
阿蒙Amon2 天前
TypeScript学习-第11章:配置文件(tsconfig.json)
学习·typescript·json
一起养小猫2 天前
Flutter for OpenHarmony 进阶:Timer组件与倒计时系统深度解析
android·网络·笔记·flutter·json·harmonyos