我正在尝试从Web服务器上的MySQL数据库中获取数据。
我的目标是检索MySQL数据库中已经存在的位置数据数组。
我正在从服务器获取此数据数组,但无法将其从jsonResponse.getJSONArray转换为JSONArray对象。

private void setUpMap() {
    Response.Listener<String> responseListener=new Response.Listener<String>(){

        @Override
        public void onResponse(String s) {
            try {
                JSONObject jsonResponse=new JSONObject(s);
                boolean success=jsonResponse.getBoolean("success");
                if(success){             //this is true, and also all the data is arrived
                    JSONArray jsonArray = jsonResponse.getJSONArray("data");   //after this line it doesnt work,it doesn't enter in for loop
                    JSONObject jsonObject;
                    for(int i=0;i<jsonArray.length();i++){
                    jsonObject=jsonArray.getJSONObject(i);
                    String mac=jsonObject.getString("mac");
                    String android_id=jsonObject.getString("android_id");
                    Double latitude=jsonObject.getDouble("latitude");
                    Double longitude=jsonObject.getDouble("longitude");
                    if(!isMarkerOnArray(markerCollection,latitude,longitude))
                    markerCollection.add(mMap.addMarker(new MarkerOptions().position(new LatLng(latitude,longitude))));
                    }

                }
                else{
                    AlertDialog.Builder builder=new AlertDialog.Builder(MapsActivity.this);
                    builder.setMessage("Downloading position failed")
                            .setNegativeButton("retry",null)
                            .create()
                            .show();
                }
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
    };
    DownloadPosition downloadPosition=new DownloadPosition(responseListener);
    RequestQueue queue= Volley.newRequestQueue(MapsActivity.this);
    queue.add(downloadPosition);


}


debug

这是我的PHP脚本

`<?php
$con=mysqli_connect("","","","");
$sql="SELECT * FROM positions";
$result=mysqli_query($con,$sql);
$response["data"]=array();
$data=array();
$data["success"]=false;
$i=0;
while($rs = mysqli_fetch_assoc($result)){
    $data["success"]=true;
    $data[$i] = array('id'=>$rs['id'],'mac'=>$rs['mac'], 'android_id'=>$rs['android_id'], 'latitude'=> $rs['latitude'],'longitude'=> $rs['longitude']);
    $i++;
}
echo json_encode($data);
mysqli_close($con);
?>`


所以我的问题是如何从jsonResponse.getJSONArray()获取JSONArray对象?

编辑:
this is json

最佳答案

您会在Response中获得JsonObject,其中包含布尔值和JsonObject。

因此,更改您的PHP代码,

$result=array();
while($rs = mysqli_fetch_assoc($result)){
      $result[$i] = array('id'=>$rs['id'],'mac'=>$rs['mac'], 'android_id'=>$rs['android_id'], 'latitude'=> $rs['latitude'],'longitude'=> $rs['longitude']);
     $i++;
}

$data['data']=$result;
echo json_encode($data);

10-07 19:56