import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import java.io.*;
import java.util.ArrayList;
import java.util.List;
public class JacksonUtils {
private final static ObjectMapper mapper = new ObjectMapper();
static {
mapper.configure(DeserializationFeature.ACCEPT_SINGLE_VALUE_AS_ARRAY, true);
mapper.configure(DeserializationFeature.ACCEPT_EMPTY_STRING_AS_NULL_OBJECT, true);
}
/**
* 将对象转换成json字符串,用于将发送的报文打印出到日志
*/
public static String toString(Object object) {
String result = null;
if (null == object)
return result;
try {
result = mapper.writeValueAsString(object);
} catch (JsonProcessingException e) {
System.out.println("对象转换成json字符串出错");
}
return result;
}
/**
* 将json字符串转换成对象,用于将发送的报文打印出到日志
* @return
*/
public static <T> T getObjectFromJsonString(String jsonStr, Class<T> responseType) {
T result = null;
if (null == jsonStr)
return result;
try {
result = mapper.readValue(jsonStr, responseType);
} catch (IOException e) {
e.printStackTrace();
System.out.println("json字符: " + jsonStr +" 串转换成对象出错");
}
return result;
}
/**
* 从文件中读取json字符串,转换成对象列表
* @param fileName
* @param JsonObjectType
* @return
*/
public static <T> List<T> readJsonFromFile(String fileName, Class<T> JsonObjectType){
List<T> result = new ArrayList<T>();
try {
//File file = new File("D:\\work\\raiyitest\\a\\a.txt");
File file = new File(fileName);
InputStreamReader isr = new InputStreamReader(new FileInputStream(file));
BufferedReader br = new BufferedReader(new FileReader(file));
//BufferedReader br = new BufferedReader(isr);
String data = null;
while((data = br.readLine()) != null){
T myRule = getObjectFromJsonString(data, JsonObjectType);
result.add(myRule);
}
br.close();
} catch (Exception e) {
e.printStackTrace();
}
return result;
}
/**
* 将对象列表转换成json字符串,写入文件
* @param fileName
* @param jsonObjectList
*/
public static <T> void WriteJsonObjectToFile(String fileName, List<T> jsonObjectList){
try {
//File file = new File("D:\\work\\raiyitest\\a\\a.txt");
File file = new File(fileName);
OutputStreamWriter osw = new OutputStreamWriter(new FileOutputStream(file));
BufferedWriter bw = new BufferedWriter(osw);
for(T jsonObject : jsonObjectList){
String myJsonStr = toString(jsonObject);
System.out.println(myJsonStr);
bw.write(myJsonStr);
bw.newLine();
}
bw.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
json串和java对象互相转换by jackson
ustbxyls2023-08-14 15:01
相关推荐
云云只是个程序马喽44 分钟前
海外短剧平台搭建方案:私有化源码系统选型|云微短剧系统技术架构拆解C137的本贾尼2 小时前
第七篇:消息队列(MQ)——就是个带存储的异步通信管道Flittly2 小时前
【AgentScope Java新手村系列】(19)多模态-图像音频视频Javatutouhouduan2 小时前
国内大厂Java面试高频题库(2026突击版)Tim_102 小时前
【C++】017、new/delete与malloc/free的区别青山木2 小时前
一把 Redis 分布式锁,踩透四个坑:锁争抢、僵尸锁、锁过期、锁丢失Java内核笔记3 小时前
万字避坑!Spring Boot 3.x 升 4.0 最全升级指南(附 Migration Checklist,建议收藏⭐)wuqingshun3141593 小时前
什么是代理模式?一般用在什么场景?cfm_29144 小时前
SpringBoot启动原理漫随流水4 小时前
Java——springboot web案例