Parse/Read Json 的最简单方法

The Easiest Way To Parse/Read Json

我正在寻找一种 Parse/Read JSON 数据 轻松 的方法。 Wile Searching 我发现了 this 并想分享它。

假设以下 Json 数据:

[
   {
     "id": 912345678901,
     "text": "How do I read JSON on Android?",
     "geo": null,
     "user": {
       "name": "android_newb",
       "followers_count": 41

   },
   {
     "id": 912345678902,
     "text": "@android_newb just use android.util.JsonReader!",
     "geo": [50.454722, -104.606667],
     "user": {
       "name": "jesse",
       "followers_count": 2
     }
   }
 ]}

请参阅下面的答案。

到目前为止,最简单的方法是使用 Gson 将 Json 数据解析为 Java 对象。

This site 甚至可以让您从示例 JSON 输入自动创建 Java 类(可能需要对 类 进行一些调整)。

无需自己动手,使用工具 ;)

Gson 是将 JSON 转换为对象以及将对象转换为 JSON

的最佳库