如何使用java解析来自url的JSON数据

时间:2013-01-02 10:54:14

标签: java json

  

可能重复:
  Parsing JSON from URL
  How to get JSON data from an url in Java?

我有一个URL,我从一个数组中获取JSON数据,我想用java解析成字符串。哪个库用于解析来自JSON的数据。

我从URL获取的数据如下所示。

[
{
"id":4,
"firstName":"varun",
"lastName":"",
"addressLine1":"new delhi",
"addressLine2":"",
"landmark":"",
"locality":"AIRPORT",
"pincode":"700003"
}]

数组没有名称。

1 个答案:

答案 0 :(得分:0)

有很多,其中一个是杰克逊:

ObjectMapper mapper = new ObjectMapper();

// json will contain the JSON in a tree
JsonNode json = mapper.readTree(yourURLObject);