0

在我的应用程序中,我试图从 JSON URL 中检索值。在 URL 中,有一点我无法解析这些值。我尝试了很多方法来找到解决方案,但我没有找到任何解决方案。

在 URL 中,我要解析的值是tag_users的值...

我附上了我试图解析值的代码,所以请帮助我找到解决方案......

///////////////////////////////////////// ///////////////////////////////////////// ///////////////////////////////////////// //////////////

String url = "http://flutterr.pnf-sites.info/api/messageshow/2";
        JsonParser jParser = new JsonParser();
        JSONObject json = jParser.getJSONfromUrl(url);
        try
        {
            JSONArray messageshow = json.getJSONArray("messageshow");
            userList.clear();
            for(int i=0; i<messageshow.length();i++)
            {
                JSONObject msg = messageshow.getJSONObject(i);
                message_id = msg.getString("message_id");
                message = msg.getString("message");
                message_pic = msg.getString("message_pic");
                uid = msg.getString("uid");
                created = msg.getString("created");
                username = msg.getString("username");
                first_name = msg.getString("first_name");
                last_name = msg.getString("last_name");
                profile_pic = msg.getString("profile_pic");
                total_likes = msg.getString("total_likes");
                JSONObject tag_user = msg.getJSONObject("tag_user");
                message = tag_user.getJSONObject("tags").getString("message");
                if(message != "false")
                    tag_uid = tag_user.getJSONObject("tags").getString("tag_uid");
                Log.v("uid", tag_uid);
                HashMap<String, String> map = new HashMap<String, String>();
                map.put("message_id", message_id);
                map.put("message", message);
                map.put("message_pic", message_pic);
                map.put("uid", uid);
                map.put("created", created);
                map.put("username", username);
                map.put("first_name", first_name);
                map.put("last_name", last_name);
                map.put("profile_pic", profile_pic);
                map.put("total_likes", total_likes);
                userList.add(map);
            }
        }
        catch(JSONException e)
        {
            Log.e("Error", e.toString());
        }

///////////////////////////////////////// ///////////////////////////////////////// ///////////////////////////////////////// //////////////

请帮助我让我知道如何解析tag_uid、tag_uname、tag_fname 和 tag_lname的值...

4

2 回答 2

2

尝试

if(!message.equals("false"))

代替

if(message != "false")

还有一件事检查您的服务器端代码

在零标签的情况下tag_userJson Object名称tags。在结果的情况下,它是 ( tags) JsonArray

编辑

如果你的 Json 看起来像这样

   "tag_user": {
  "tags": [
    {
      "tag_uid": "1",
      "tag_fname": "abhishek",
      "tag_lname": "dhiman",
      "tag_uname": "abhishek"
    }
  ]"message": "true" //here true or false to check "tags" array
}

然后在代码中你可以得到

message = tag_user.getJSONObject("message");

                    if(!message.equals("false"))
                    tag_uid = tag_user.getJSONArray("tags").getJSONObject(0).getString("tag_uid");

//将返回第一个标签的“tag_uid”`

于 2012-10-15T17:53:31.447 回答
0

tag_user 是一个包含数组的 JSON 对象:

"tag_user":{"tags":[{"tag_uid":"1","tag_fname":"abhishek","tag_lname":"dhiman","tag_uname":"abhishek"},{"tag_uid":"4","tag_fname":"tttttt","tag_lname":"tttttt","tag_uname":"tttttt"},{"tag_uid":"3","tag_fname":"qqqqqq","tag_lname":"qqqqqq","tag_uname":"qqqqqq"},{"tag_uid":"13","tag_fname":"Firstname","tag_lname":"Lastname","tag_uname":"Username4"}]}

你应该试试

getJSONArray("tags")

在 tag_user 对象上

如果您熟悉 Sax 解析,请尝试 Gson 项目中的 JsonReader: https ://sites.google.com/site/gson/streaming

于 2012-10-15T17:55:02.343 回答