我正在为Android应用程序编码并在移动设备上运行 (Pie版本)并且我使用Volley库连接到服务器。 当我向服务器发送请求(JsonArrayRequest)时,应用程序日志 onErrorRespons 它面临着这个错误
com.android.volley.ParseError: org.json.JSONException: Value <html>
<body> <script of type java.lang.String cannot be converted to JSONArray
这是服务器和Android代码的示例 我什至在服务器上使用了此代码 标头('Content-Type:application / json'); 但我仍然遇到相同的错误
您可以使用此链接查看内容http://alibaba.gigfa.com/getcity.php
谢谢你的努力,朋友们
php:
<?php
include "connect.php";
$query="SELECT * FROM city";
$res=$connect->prepare($query);
$res->execute();
$products=array();
while($row=$res->fetch(PDO::FETCH_ASSOC)){
$record=array();
$record["id"]=$row["id"];
$record["title"]=$row["city"];
$products[]=$record;
}
echo json_encode($products);
?>
java:
JsonArrayRequest jsonArrayRequest = new
JsonArrayRequest(Request.Method.GET, URL, null, new
Response.Listener<JSONArray>() {
@Override
public void onResponse(JSONArray response) {
Log.e("Adrom Response1: ", response.toString());
for (int i = 0; i < response.length(); i++) {
try {
JSONObject jsonObject = response.getJSONObject(i);
String city = jsonObject.getString("title");
cities.add(city);
} catch (JSONException e) {
Log.e("Adrom Response2: ", e.toString());
e.printStackTrace();
}
}
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
Log.e("Adrom Response3: ", error.toString());
}
});
RequestQueue requestQueue = Volley.newRequestQueue(this);
requestQueue.add(jsonArrayRequest);