在Java中,可以使用Json庫來解析和獲取JSON中的某個值。以下是一種常見的方法:
import org.json.JSONObject;
String jsonString = "{\"name\":\"John\", \"age\":30, \"city\":\"New York\"}";
JSONObject json = new JSONObject(jsonString);
get()
方法獲取特定鍵的值。String name = json.getString("name");
int age = json.getInt("age");
String city = json.getString("city");
在上述示例中,我們使用getString()
和getInt()
方法從JSON對象中獲取鍵名為"name"、"age"和"city"的值。
請注意,上述示例使用的是Java的原生庫org.json
。根據你使用的JSON庫不同,代碼語法可能會有所不同。