读取 json 文件

Json转换:读取Jar包中的json文件

现在操作json的jar 都是用的Gson,
如果需要读取的json文件不在jar包里面,则可以这样获取到:

//该目录是以resources目录为根目录
String path = this.getClass().getClassLoader().getResource("json/abc.json").getPath();
//文件内容直接转为String类型 String content = FileUtils.readFileToString(new File(path), "UTF-8");
JSONObject obj = JSONObject.parseObject(content)

否则就需要下面这样获取:

String jsonStr = "";
//该目录是以resources目录为根目录
String path = "json/abc.json";
//文件内容直接转为String类型

InputStream is = this.getClass().getClassLoader().getResourceAsStream(path);
//举例:InputStream inputStream = XXXX.class.getClassLoader().getResourceAsStream(path);
BufferedReader in = new BufferedReader(new InputStreamReader(is, Charset.forName("UTF-8")));
StringBuffer buffer = new StringBuffer();
String line = "";
while ((line = in.readLine()) != null){
	buffer.append(line);
}
jsonStr = buffer.toString();

使用Gson获取内容:

Gson gson = new Gson();
Type type = new TypeToken<Map<String, List<String>>>() {}.getType();
Map<String, List<String>> maps = gson.fromJson(jsonStr, type);

版权声明:本文为CSDN博主「就这样注册了」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/weixin_41369712/article/details/97145476

你可能感兴趣的:(JSON)