从没有URL的Android对象的JSON中获取数据。我有错误

时间:2018-09-10 08:10:00

标签: android json

我想从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。

1 个答案:

答案 0 :(得分:0)

请注意,您不在响应回调中使用响应...

JSONObject json = new JSONObject();
String name= json.getString("FRUITS");

name始终为空