使用 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;

}

}


相关推荐
晓131321 小时前
第一章:Redis 安装与入门
redis·json·nosql
AI视觉网奇1 天前
ue 5.5 c++ mqtt 订阅/发布 json
网络·c++·json
忠实米线1 天前
使用lottie.js播放json动画文件
开发语言·javascript·json
热爱学习的小翁同学2 天前
SharePoint 列格式化 JSON 配置
json·sharepoint
qq_338032922 天前
Vue/JS项目的package.json文件 和java项目里面的pom文件
java·javascript·vue.js·json
wtsolutions2 天前
Sheet-to-Doc Supports JSON and JSONL: New Way to Batch Generate Word Documents
json·word·batch
@zulnger2 天前
爬虫库之 requests_html,json
爬虫·html·json
2501_915909063 天前
如何保护 iOS IPA 文件中资源与文件的安全,图片、JSON重命名
android·ios·小程序·uni-app·json·iphone·webview
组合缺一3 天前
Json Dom 怎么玩转?
java·json·dom·snack4
wtsolutions3 天前
MCP Server Integration - JSON to Excel for AI and Automation
json·excel