-2
[
  {
      "updated_at":"2012-03-02 21:06:01",
      "fetched_at":"2012-03-02 21:28:37.728840",
      "description":null,
      "language":null,
      "title":"JOHN",
      "url":"http://rus.JOHN.JOHN/rss.php",
      "icon_url":null,
      "logo_url":null,
      "id":"4f4791da203d0c2d76000035",
      "modified":"2012-03-02 23:28:58.840076"
   },
   {
      "updated_at":"2012-03-02 14:07:44",
      "fetched_at":"2012-03-02 21:28:37.033108",
      "description":null,
      "language":null,
      "title":"PETER",
      "url":"http://PETER.PETER.lv/rss.php",
      "icon_url":null,
      "logo_url":null,
      "id":"4f476f61203d0c2d89000253",
      "modified":"2012-03-02 23:28:57.928001"
   }
]
glytching
  • 44,936
  • 9
  • 114
  • 120
Dipak
  • 39
  • 2
  • 9

2 Answers2

0

First create one class (Json_obj) for your json data.Then you can try this :

String json_str='[ { "updated_at":"2012-03-02 21:06:01", "fetched_at":"2012-03-02 21:28:37.728840", "description":null, "language":null, "title":"JOHN", "url":"http://rus.JOHN.JOHN/rss.php", "icon_url":null, "logo_url":null, "id":"4f4791da203d0c2d76000035", "modified":"2012-03-02 23:28:58.840076" }, { "updated_at":"2012-03-02 14:07:44", "fetched_at":"2012-03-02 21:28:37.033108", "description":null, "language":null, "title":"PETER", "url":"http://PETER.PETER.lv/rss.php", "icon_url":null, "logo_url":null, "id":"4f476f61203d0c2d89000253", "modified":"2012-03-02 23:28:57.928001" } ]';
Gson gson = new Gson();
Json_obj json_obj = gson.fromJson(json_str, Json_obj.class);

Now your json data is converted in an object.You can fetch any value from that object.

Michael Dodd
  • 10,102
  • 12
  • 51
  • 64
0

I suggest you just use jackson library instead.

You can just quickly have

ObjectMapper mapper = new ObjectMapper () // this reads json to Pojo and writes Pojo to json

YourPojoClass obj = mapper.readValue (....)

Reference: mkyong.com/java/jackson-2-convert-java-object-to-from-json

AskNilesh
  • 67,701
  • 16
  • 123
  • 163
GemSky
  • 1
  • 4