阅读量:0
在Java中,可以使用Json库(如Jackson、Gson等)来解析和操作JSON数据。下面是使用Jackson库的示例代码:
import com.fasterxml.jackson.databind.JsonNode; import com.fasterxml.jackson.databind.ObjectMapper; public class JsonParsingExample { public static void main(String[] args) { // JSON字符串 String json = "{\"name\":\"John\", \"age\":30, \"city\":\"New York\"}"; try { // 创建ObjectMapper对象 ObjectMapper objectMapper = new ObjectMapper(); // 将JSON字符串解析为JsonNode对象 JsonNode jsonNode = objectMapper.readTree(json); // 从JsonNode对象中获取值 String name = jsonNode.get("name").asText(); int age = jsonNode.get("age").asInt(); String city = jsonNode.get("city").asText(); // 打印结果 System.out.println("Name: " + name); System.out.println("Age: " + age); System.out.println("City: " + city); } catch (Exception e) { e.printStackTrace(); } } }
上述代码将JSON字符串解析为JsonNode对象,并使用get
方法从JsonNode对象中获取相应的值。可以根据需要使用不同的数据类型的asXxx
方法(如asText
、asInt
等)来获取对应类型的值。