可以使用JSON庫將JSON字符串轉換為JSONObject對象。具體步驟如下:
dependencies {
implementation 'org.json:json:20210307'
}
import org.json.JSONObject;
public class Main {
public static void main(String[] args) {
String jsonString = "{\"name\":\"John\", \"age\":30, \"city\":\"New York\"}";
JSONObject jsonObject = new JSONObject(jsonString);
// 使用JSONObject對象
String name = jsonObject.getString("name");
int age = jsonObject.getInt("age");
String city = jsonObject.getString("city");
System.out.println("Name: " + name);
System.out.println("Age: " + age);
System.out.println("City: " + city);
}
}
在上面的例子中,我們將JSON字符串{"name":"John", "age":30, "city":"New York"}
轉換為一個JSONObject對象,并從中獲取屬性值。輸出結果如下:
Name: John
Age: 30
City: New York
請注意,這只是使用org.json庫的一個示例。根據你使用的編程語言和JSON庫,可能會有不同的實現方式。