Java教程

Java读取json文件转换为json

本文主要是介绍Java读取json文件转换为json,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

在项目中遇到读取以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的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!