转换JSON对象
想要读取json文件,首先需要获得文件。由于JSON文件的特殊格式,可以将字符串转换成JSON对象,所以可以将文件以字符串的形式读取出来,再通过转换称为JSON对象。当然读取文件的时候会有异常,注意处理。
public JSONObject getJSON(){
File file = new File("filePath");
String content = null;
try {
content = FileUtils.readFileToString(file);
} catch (IOException e) {
e.printStackTrace();
}
JSONObject jsonObject = new JSONObject(content);
return jsonObject;
}
读取JSON数据
获得了JSON数据,那么改如何哪去里面的特定数据呢?这就需要用到JSONObject的方法了。JSONObject中有get方法,当然是通过key值获取Value值的。JSONObject封装了获取string、double等一些类型数据的方法 ,如:
<