json串和java对象互相转换by jackson

复制代码
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();
      }
   }
}
相关推荐
IT学长编程7 分钟前
计算机毕业设计 玩具租赁系统的设计与实现 Java实战项目 附源码+文档+视频讲解
java·spring boot·毕业设计·课程设计·毕业论文·计算机毕业设计选题·玩具租赁系统
莹雨潇潇10 分钟前
Docker 快速入门(Ubuntu版)
java·前端·docker·容器
杨哥带你写代码28 分钟前
足球青训俱乐部管理:Spring Boot技术驱动
java·spring boot·后端
郭二哈1 小时前
C++——模板进阶、继承
java·服务器·c++
A尘埃1 小时前
SpringBoot的数据访问
java·spring boot·后端
yang-23071 小时前
端口冲突的解决方案以及SpringBoot自动检测可用端口demo
java·spring boot·后端
沉登c1 小时前
幂等性接口实现
java·rpc
代码之光_19801 小时前
SpringBoot校园资料分享平台:设计与实现
java·spring boot·后端
立秋67892 小时前
Python的defaultdict详解
服务器·windows·python
Json_181790144802 小时前
商品详情接口使用方法和对接流程如下
大数据·json