gpt4 book ai didi

java - jsonResponse.getJSONArray 不工作

转载 作者:行者123 更新时间:2023-11-30 22:16:20 25 4
gpt4 key购买 nike

我正在尝试从 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,其中包含 boolean 值和 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);

关于java - jsonResponse.getJSONArray 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38155184/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com