在Java中遍歷JSON的key和value可以使用org.json
庫或者com.fasterxml.jackson.databind
庫。以下是兩種方法的示例:
使用org.json
庫:
import org.json.JSONObject;
public class JsonExample {
public static void main(String[] args) {
String jsonStr = "{\"name\":\"John\",\"age\":30,\"city\":\"New York\"}";
JSONObject jsonObject = new JSONObject(jsonStr);
for (String key : jsonObject.keySet()) {
Object value = jsonObject.get(key);
System.out.println(key + ": " + value);
}
}
}
使用com.fasterxml.jackson.databind
庫:
import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.ObjectMapper;
public class JsonExample {
public static void main(String[] args) throws Exception {
String jsonStr = "{\"name\":\"John\",\"age\":30,\"city\":\"New York\"}";
ObjectMapper objectMapper = new ObjectMapper();
JsonNode jsonNode = objectMapper.readTree(jsonStr);
jsonNode.fields().forEachRemaining(entry -> {
String key = entry.getKey();
JsonNode value = entry.getValue();
System.out.println(key + ": " + value);
});
}
}
無論是使用org.json
庫還是com.fasterxml.jackson.databind
庫,都可以通過遍歷JSON對象的key集合來獲取對應的value值。