遍历 org.json.JSONObject
时间: 2023-07-29 12:09:29 浏览: 81
遍历JSON文件内容
可以使用 `keys()` 方法获取 `JSONObject` 中所有的键,然后使用这些键来获取对应的值。以下是一个示例代码:
```java
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 中的所有键
for (String key : jsonObject.keySet()) {
System.out.println(key + ": " + jsonObject.get(key));
}
}
}
```
输出结果:
```
name: John
age: 30
city: New York
```
阅读全文