我想从URL获取一些数据。 JSON数据不包含任何对象。
我的代码:
requestQueuee = Volley.newRequestQueue(this);
JsonObjectRequest obreqqw = new JsonObjectRequest(Request.Method.GET,kl,
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
try {
JSONObject json = new JSONObject();
String name= json.getString("FRUITS");
hu(name);
}
catch (JSONException e) {
e.printStackTrace();
}
}
},
new Response.ErrorListener() {
@Override
// Handles errors that occur due to Volley
public void onErrorResponse(VolleyError error) {
Log.e("Volley", "Error");
}
}
);
//Toast.makeText (this, desc, Toast.LENGTH_SHORT).show ();
requestQueuee.add(obreqqw);
我的日志:
[4219] BasicNetwork.performRequest:...的意外响应代码403。
答案 0 :(得分:0)
请注意,您不在响应回调中使用响应...
JSONObject json = new JSONObject();
String name= json.getString("FRUITS");
name
始终为空