在Java中,可以使用JSONObject
类来定义JSON对象。首先,需要导入org.json.JSONObject
包。然后,可以使用以下方法来定义JSON对象:
JSONObject json = new JSONObject();
String jsonString = "{\"name\":\"John\", \"age\":30, \"city\":\"New York\"}";
JSONObject json = new JSONObject(jsonString);
JSONObject json = new JSONObject();
json.put("name", "John");
json.put("age", 30);
json.put("city", "New York");
注意:在使用JSONObject
类之前,需要确保已经引入json
库的依赖。