从PHP Json结果中删除结尾[和]以获取Android Java代码

时间:2013-10-10 21:14:50

标签: java php android arrays json

我的PHP代码是这样的:

$userdetails = mysqli_query($con, "SELECT *FROM aircraft_status"); 

#$row = mysql_fetch_row($userdetails) ;

while($rows=mysqli_fetch_array($userdetails)){
$status[]= array($rows['Aircraft']=>$rows['Status']);
}
#Output the JSON data
echo json_encode($status); 

并给出了这个:

[{"A70_870":"1"},{"A70_871":"1"},{"A70_872":"1"},{"A70_873":"1"},{"A70_874":"1"},{"A70_875":"1"},{"A70_876":"2"},{"A70_877":"1"},{"A70_878":"2"},{"A70_879":"2"},{"A70_880":"2"},{"A70_881":"0"},{"A70_882":"0"},{"A70_883":"0"},{"A70_884":"0"},{"A70_885":"0"}]

读取它的java代码是:

// Create a JSON object from the request response
    JSONObject jsonObject = new JSONObject(result);

    //Retrieve the data from the JSON object
        n870 = jsonObject.getInt("A70_870");
        n871 = jsonObject.getInt("A70_871");
        n872 = jsonObject.getInt("A70_872");
        n873 = jsonObject.getInt("A70_873");
        n874 = jsonObject.getInt("A70_874");
        n875 = jsonObject.getInt("A70_875");
        n876 = jsonObject.getInt("A70_876");
        n877 = jsonObject.getInt("A70_877");
        n878 = jsonObject.getInt("A70_878");
        n879 = jsonObject.getInt("A70_879");
        n880 = jsonObject.getInt("A70_880");
        n881 = jsonObject.getInt("A70_881");
        n882 = jsonObject.getInt("A70_882");
        n883 = jsonObject.getInt("A70_883");
        n884 = jsonObject.getInt("A70_884");
        n885 = jsonObject.getInt("A70_885");

当我运行我的Android应用程序时,我似乎不断收到错误:

"of type org.json.JSONArray cannot be converted into Json object"

然而,当我发送没有方括号的应用程序虚拟代码时,它似乎工作正常!如何摆脱那些[和]括号的结尾???

或者有没有办法接受json,并调整java来读取它?

5 个答案:

答案 0 :(得分:1)

echo json_encode($status, JSON_FORCE_OBJECT);

演示:http://codepad.viper-7.com/lrYKv6

echo json_encode((Object) $status); 

演示; http://codepad.viper-7.com/RPtchU

答案 1 :(得分:1)

不使用JSonobject,而是使用JSONArray

   JSONArray array = new JSONArray(sourceString);

稍后循环遍历数组并执行业务逻辑。

http://www.json.org/javadoc/org/json/JSONArray.html

答案 2 :(得分:0)

你得到一个JSONArray,Not Object,你可以创建一个持有数组的Object,或者解析数组。 请参阅this帖子

答案 3 :(得分:0)

也许有这种json结构?

$status[$rows['Aircraft']]= $rows['Status'];

答案 4 :(得分:0)

解决方案#1(Java)

这样的辅助方法怎么样:

private int getProp(String name, JSONArray arr) throws Exception {
    for (int i = 0; i < arr.length(); ++i) {
        JSONObject obj = arr.getJSONObject(i);
        if (obj.has(name))
            return obj.getInt(name);
    }
    throw new Exception("Key not found");
}

然后你就可以使用它:

JSONArray jsonArray = new JSONArray(result); // note the *JSONArray* vs your *JSONObject*
n870 = getProp("A70_870", jsonArray);
n871 = getProp("A70_871", jsonArray);
...

注意我没有测试过这段代码,因此您可能需要进行一些更改......

替代解决方案(PHP)

自从我使用PHP以来已经有一段时间了,但您可以保持Java代码的完整性,并将while - 循环体中的PHP更改为:

$status[$rows['Aircraft']] = $rows['Status'];