欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

java 如何讀取json文件

洪振霞1年前12瀏覽0評論

在Java中,我們可以使用JSON庫來讀取JSON文件。以下是讀取JSON文件的步驟:

1. 導入所需的庫

import java.io.FileReader;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;

2. 創建JSON解析器

JSONParser parser = new JSONParser();

3. 使用解析器讀取JSON文件

Object obj = parser.parse(new FileReader("file.json"));

4. 將對象轉換為JSONObject

JSONObject jsonObject = (JSONObject) obj;

5. 使用get()方法獲取JSON對象中的值

String name = (String) jsonObject.get("name");
Long age = (Long) jsonObject.get("age");

完整的讀取JSON文件示例代碼如下:

import java.io.FileReader;
import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
public class ReadJSONFile {
public static void main(String[] args) {
JSONParser parser = new JSONParser();
try {
Object obj = parser.parse(new FileReader("file.json"));
JSONObject jsonObject = (JSONObject) obj;
String name = (String) jsonObject.get("name");
Long age = (Long) jsonObject.get("age");
System.out.println("Name: " + name);
System.out.println("Age: " + age);
} catch (Exception e) {
e.printStackTrace();
}
}
}