排球请求总是得到错误监听器
Volley request always get Error Listener
JsonObjectRequest movieReq = new JsonObjectRequest(Request.Method.GET,url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response)
{
try {
JSONArray images = response.getJSONArray("images");
for(int i = 0; i<images.length(); i++)
{
try {
JSONObject obj =(JSONObject)images.get(i);
//JSONObject obj = images.getJSONObject(i);
Movie movie = new Movie();
movie.setTitle(obj.getString("itemid"));
movie.setThumbnailUrl(obj.getString("imagepath"));
movieList.add(movie);
} catch (Exception e) {
// TODO: handle exception
}
}
}
catch (JSONException e) {
}
adapter.notifyDataSetChanged();
};
}
, new Response.ErrorListener(
) {
@Override
public void onErrorResponse(VolleyError error) {
// TODO Auto-generated method stub
Toast.makeText(getApplicationContext(), "Error in Json parse", Toast.LENGTH_LONG).show();
hidePDialog();
}
});
JSON 部分:
{
"images":
{
"imageid":"1",
"itemid":"item1",
"imagepath":"http:\/\/127.0.0.1\/resturant\/image\/chinese1.jpg"
},
{
"imageid":"2",
"itemid":"item2",
"imagepath":"http:\/\/127.0.0.1\/resturant\/image\/chinese2.jpg"
}
]
}
这里我想从图像 JSON 数组中检索 itemid 和 imagepath 标签。但是我的 JSON 没有响应,它正在显示错误侦听器的祝酒词。有人可以帮忙吗?我获得了 Internet 的许可,我检查了 URL,它正在运行。
请出示您呼叫的 url
的内容。如果您的 URL 包含 127.0.0.1
,您正在调用 android 模拟器的本地主机(并且您的服务器不在模拟器上 运行)。
要从模拟器调用您 PC 的本地主机,您必须将 127.0.0.1
替换为 10.0.2.2
JsonObjectRequest movieReq = new JsonObjectRequest(Request.Method.GET,url, null,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response)
{
try {
JSONArray images = response.getJSONArray("images");
for(int i = 0; i<images.length(); i++)
{
try {
JSONObject obj =(JSONObject)images.get(i);
//JSONObject obj = images.getJSONObject(i);
Movie movie = new Movie();
movie.setTitle(obj.getString("itemid"));
movie.setThumbnailUrl(obj.getString("imagepath"));
movieList.add(movie);
} catch (Exception e) {
// TODO: handle exception
}
}
}
catch (JSONException e) {
}
adapter.notifyDataSetChanged();
};
}
, new Response.ErrorListener(
) {
@Override
public void onErrorResponse(VolleyError error) {
// TODO Auto-generated method stub
Toast.makeText(getApplicationContext(), "Error in Json parse", Toast.LENGTH_LONG).show();
hidePDialog();
}
});
JSON 部分:
{
"images":
{
"imageid":"1",
"itemid":"item1",
"imagepath":"http:\/\/127.0.0.1\/resturant\/image\/chinese1.jpg"
},
{
"imageid":"2",
"itemid":"item2",
"imagepath":"http:\/\/127.0.0.1\/resturant\/image\/chinese2.jpg"
}
]
}
这里我想从图像 JSON 数组中检索 itemid 和 imagepath 标签。但是我的 JSON 没有响应,它正在显示错误侦听器的祝酒词。有人可以帮忙吗?我获得了 Internet 的许可,我检查了 URL,它正在运行。
请出示您呼叫的 url
的内容。如果您的 URL 包含 127.0.0.1
,您正在调用 android 模拟器的本地主机(并且您的服务器不在模拟器上 运行)。
要从模拟器调用您 PC 的本地主机,您必须将 127.0.0.1
替换为 10.0.2.2