如何迭代多个JSON响应?

时间:2012-10-22 06:20:40

标签: java php android json

我想从PHP返回多个回复到我的Android设备。 在PHP中我有类似的东西:

while ($row = mysql_fetch_array($data)) {
    $response["post"] = strip_tags($row["post_text"]);
    $response["date"] = date('D M d, Y', $row["post_time"]);
    echo json_encode($response);
}

在Logcat中我得到:

  

{“tag”:“midnightAnnouncements”,“成功”:1,“错误”:0,“发布”:“这是测试公告!”,“日期”:“Sun Oct 21,2012”} { “tag”:“midnightAnnouncements”,“success”:1,“error”:0,“post”:“这是另一个”,“日期”:“Sun Oct 21,2012”} n

这是两行的结果。我想迭代JSON对象并获取两个“post”的字符串。如何在Java中完成?

2 个答案:

答案 0 :(得分:0)

试试这个 -

HttpResponse response = httpclient.execute(httppost);
BufferedReader reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent(), "UTF-8"));
String json = reader.readLine();
JSONArray array = new JSONArray(json);
String post;
for (int i = 0; i < array.length(); i++) {
    JSONObject row = array.getJSONObject(i);
    post = row.getString('post');
}

正如nneonneo指出的那样,您对服务器的响应格式不正确。您应首先将所有内容包装在二维数组中,然后回显json_encoded版本。

$i=0;
while ($row = mysql_fetch_array($data)) {
    $response[$i]["post"] = strip_tags($row["post_text"]);
    $response[$i]["date"] = date('D M d, Y', $row["post_time"]);
    $i++;
}
echo json_encode($response);

答案 1 :(得分:0)

您可以将输出包装在JSON数组中:

$output = array();

while ($row = mysql_fetch_array($data)) {
    $response["post"] = strip_tags($row["post_text"]);
    $response["date"] = date('D M d, Y', $row["post_time"]);

    $output[] = $response;
}
echo json_encode($output);