当前位置: 首页 > 面试题库 >

如何在Android中解析此JSON?

柯易安
2023-03-14
问题内容

我想拉出用户块。JSON结果将始终更改,有时将返回4个用户,有时将返回10个,等等。

 {
      "results": [
        {
          "user": {
            "avatar_url_thumb": "http://avatars.stocktwits.com/production/9998/thumb-1270014645.png?1270014645",
            "avatar_url_medium": "http://avatars.stocktwits.com/production/9998/medium-1270014645.png?1270014645",
            "created_at": "2010-03-15T05:44:51Z",
            "following_count": 14,
            "updated_at": "2010-08-30T18:22:15Z",
            "id": 9998,
            "updates_count": 31,
            "avatar_url_large": "http://avatars.stocktwits.com/production/9998/large-1270014645.png?1270014645",
            "investor_relations": false,
            "last_name": "Reporter",
            "followers_count": 25,
            "recommended": false,
            "bio": "Apple News & AAPL Stock Analysis, visit Apple Digest blog link above",
            "login": "AppleReporter",
            "first_name": "Apple"
          }
        },
        {
          "user": {
            "avatar_url_thumb": "http://api.stocktwits.com/images/default_avatar_thumb.jpg",
            "avatar_url_medium": "http://api.stocktwits.com/images/default_avatar_medium.jpg",
            "created_at": "2010-04-14T01:02:05Z",
            "following_count": 0,
            "updated_at": "2010-08-30T18:29:56Z",
            "id": 12924,
            "updates_count": 1,
            "avatar_url_large": "http://api.stocktwits.com/images/default_avatar_large.jpg",
            "investor_relations": false,
            "last_name": "Shareholder",
            "followers_count": 0,
            "recommended": false,
            "bio": null,
            "login": "Imurphit",
            "first_name": "Apple"
          }
        },
        {
          "user": {
            "avatar_url_thumb": "http://api.stocktwits.com/images/default_avatar_thumb.jpg",
            "avatar_url_medium": "http://api.stocktwits.com/images/default_avatar_medium.jpg",
            "created_at": "2010-04-17T20:52:09Z",
            "following_count": 0,
            "updated_at": "2010-08-30T18:31:23Z",
            "id": 13234,
            "updates_count": 0,
            "avatar_url_large": "http://api.stocktwits.com/images/default_avatar_large.jpg",
            "investor_relations": false,
            "last_name": "Apple",
            "followers_count": 0,
            "recommended": false,
            "bio": null,
            "login": "apple11",
            "first_name": "John"
          }
        },
        {
          "user": {
            "avatar_url_thumb": "http://api.stocktwits.com/images/default_avatar_thumb.jpg",
            "avatar_url_medium": "http://api.stocktwits.com/images/default_avatar_medium.jpg",
            "created_at": "2010-07-12T19:04:51Z",
            "following_count": 0,
            "updated_at": "2010-08-30T20:12:15Z",
            "id": 18691,
            "updates_count": 0,
            "avatar_url_large": "http://api.stocktwits.com/images/default_avatar_large.jpg",
            "investor_relations": false,
            "last_name": "Smith",
            "followers_count": 0,
            "recommended": false,
            "bio": null,
            "login": "apple",
            "first_name": "Jacob"
          }
        },
        {
          "user": {
            "avatar_url_thumb": "http://api.stocktwits.com/images/default_avatar_thumb.jpg",
            "avatar_url_medium": "http://api.stocktwits.com/images/default_avatar_medium.jpg",
            "created_at": "2010-07-13T17:06:27Z",
            "following_count": 0,
            "updated_at": "2010-08-30T20:12:30Z",
            "id": 18808,
            "updates_count": 3,
            "avatar_url_large": "http://api.stocktwits.com/images/default_avatar_large.jpg",
            "investor_relations": false,
            "last_name": "apple",
            "followers_count": 0,
            "recommended": false,
            "bio": null,
            "login": "applejames",
            "first_name": "James"
          }
        }
      ],
      "page": 1,
      "symbol": false,
      "per_page": 20,
      "response": {
        "status": 200
      },
      "total_pages": 1,
      "total_entries": 6
    }

问题答案:

使用JSONObject

 // Get some JSON from wherever
 String json = getJSONFromServer();

 // Parse the JSON response into an object
 JSONObject object = new JSONObject(json);

 // Get the results array
 JSONArray users = object.getJSONArray("results");
 for(int i = 0; i < users.length(); i++) {
     // Each element in the results array is a JSONObject with a single
     // property "user" which is a JSONObject that contains the user data
     JSONObject user = users.getJSONObject(i).getJSONObject("user");

     // Do something with the user
     String firstName = user.getString("first_name");
 }


 类似资料:
  • 问题内容: 我必须将下面嵌套的Json数组的数据解析到我的应用程序中。我很困惑如何从中获取价值。 任何人都可以指导我如何从中获取内部价值。 我已经试过了 问题答案: 这是我认为您的JSON解析器应为的样子(可能存在一些拼写错误,我没有在编辑器上测试此代码:)):

  • 问题内容: 我想读这行,但是因为它以我开始有些困惑 我只需要使用“名称”并将所有另存为一个字符串。(字符串值将是:Jeff Bridges,Charles Grodin,Jessica Lange,John Randolph,Rene Auberjonois)。 这是我的代码: 问题答案: 如果您使用的是“名称”,为什么您的代码片段看起来像是试图获取“字符”的尝试? 无论如何,这与任何其他类似于列

  • 问题内容: 我想解析以下Json响应: 我尝试使用SIMPLE JSON解析器,但这对我不起作用: 问题答案: 输出: 评论: 我没有添加验证 [编辑] 加载json字符串的其他方法

  • 我正在使用来解析Json数据。我的Json数据如下: GsonParse.java 我使用以下方法来解析此JSON数据。 我面对以下错误。

  • 问题内容: 前缀/ dir1 / dir2 / dir3 / dir4 / .. 如何在Java中从上述字符串中解析出值? 这里的前缀可以是: / usr / local / apache2 / resumes 问题答案: 如果要在字符处分割,该方法将起作用: 例如: 输出量 编辑 前缀为a 的情况,我们知道前缀是什么: 没有前缀的子字符串由方法组成。也就是说,然后通过运行。 输出: 重新编辑 如

  • 问题内容: 我收到此响应的结果是对服务器的GET请求 我只想从上述json响应中提取的值。 我正在使用此代码来获得此响应 我的问题是,我该如何解析并获取only 标签的值。谢谢 问题答案: 您可以解析当前的json字符串以从中获取它: