码迷,mamicode.com
首页 > 编程语言 > 详细

Java读取json文件转换为json

时间:2021-05-24 04:37:23      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:har   parse   exception   file   fast   项目   turn   cep   sys   

在项目中遇到读取以json格式存储的配置文件,为了方便操作,将文件内容读取出来并转换为json对象,本文使用的是fastjson

import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
import org.apache.commons.io.IOUtils;

import java.io.*;
import java.nio.charset.StandardCharsets;

/**
 * 读取配置文件
 * @author oldwei
 */
public class ConfJsonUtil {
    public static JSONObject toJson() throws IOException {
        String filePath = System.getProperty("user.dir") + "/sdk/conf.json";
        InputStream in = new BufferedInputStream(new FileInputStream(filePath));
        String conf = IOUtils.toString(in, StandardCharsets.UTF_8);
        return JSON.parseObject(conf);
    }
}

Java读取json文件转换为json

标签:har   parse   exception   file   fast   项目   turn   cep   sys   

原文地址:https://www.cnblogs.com/oldweipro/p/14752244.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!