欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

将本地的json文件转换成java对象

程序员文章站 2022-05-24 10:55:32
...
public class Abc {

......
}
        String path = "E:/apps/abc.json";
        {
            File file = new File(path);
            ObjectMapper mapper = new ObjectMapper();
            Abc abc= null;
            try {
                JsonNode jsonNode = mapper.readTree(file);
                abc= mapper.treeToValue(jsonNode, Abc.class);
            } catch (IOException e) {
                log.error("解析{}异常,失败信息:{}", file.getName(), e.getMessage());
            }
           
        }
相关标签: # Spring 工具类