//从给定位置读取Json文件
public String readJson(String path){
//从给定位置获取文件
File file = new File(path);
BufferedReader reader = null;
//返回值,使用StringBuffer
StringBuffer data = new StringBuffer();
//
try {
reader = new BufferedReader(new FileReader(file));
//每次读取文件的缓存
String temp = null;
while((temp = reader.readLine()) != null){
data.append(temp);
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally {
//关闭文件流
if (reader != null){
try {
reader.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
return data.toString();
}
相关文章
- 11-11自动将指定目录下面的文件转换为UTF-8
- 11-11如何将itertools.permutations(“0123456789”)的结果(在python中)转换为字符串列表
- 11-11Android:将JSON转换为POJO是否正确?
- 11-11Go 将字符串写入文件
- 11-11js将字符串转json
- 11-11JS字符串转换为JSON的方法
- 11-11python-如何将.npy文件转换为.binaryproto?
- 11-11将json串转Map《String, List《Object》》
- 11-11将模型对象转换为json字典:model_to_dict
- 11-11toJSON() 方法,将 Date 对象转换为字符串,并格式化为 JSON 数据格式。