Android-Volley:为JsonArrayRequest设置HTTP标头

时间:2016-01-07 07:48:47

标签: android json http-headers android-volley

所以我已经看到了JsonObjectRequests的几个示例,其中添加了此代码

        @Override
        public String getBodyContentType() {
            return "application/json";
        }

有时使用此代码

        @Override
        public Map<String, String> getHeaders() throws AuthFailureError {
            HashMap<String, String> headers = new HashMap<String, String>();
            headers.put("Content-Type", "application/json");
            return headers;
        }

无论哪种方式,它总是与JsonObjectRequest结合使用。我真的不知道在JsonArrayRequest中添加@Override方法的位置。这就是我的JsonArrayRequest的样子

JsonArrayRequest localJReq = new JsonArrayRequest(localURL,
      new Response.Listener<JSONArray>() {
        @Override
        public void onResponse(JSONArray response){
            try{
                for (int i=0; i < response.length(); i++)
                {
                    JSONObject jsonObject = response.getJSONObject(i);
                    String title = jsonObject.getString("Title");
                    data += "Beschreibung: "+title+"\n\n\n";
                }
                output.setText(data);
            }catch (JSONException e){
                e.printStackTrace();
            }

        }
    },
            new Response.ErrorListener(){
                @Override
                public void onErrorResponse(VolleyError error){
                    error.printStackTrace();
                    Toast.makeText(MainActivity.this, "No more Items Available",
                          Toast.LENGTH_LONG).show();
                }
    });

我已尝试在最后一次结束{}之后的)中添加它,但这不起作用。我试着把它放在Response.Listener里面,但也没有用。所以我有点困惑。

无论如何我觉得我做JsonArrayRequest真的很奇怪但是因为我的REST API正在接受HTML&amp;作为响应的JSON,Volley似乎得到了HTML响应而不是JSON。这让我在我的应用程序中没有任何项目。难道不是那么奇怪吗?因为它是一个JsonRequest不应该请求将内容类型设置为application / json吗?我希望通过将content-type设置为application / json,我将得到正确的响应类型。

1 个答案:

答案 0 :(得分:6)

您可以在请求结束时调用这些方法,并在;

之前使用
    JsonArrayRequest localJReq = new JsonArrayRequest(localURL,
            new Response.Listener<JSONArray>() {
                @Override
                public void onResponse(JSONArray response) {

                }
            },
            new Response.ErrorListener() {
                @Override
                public void onErrorResponse(VolleyError error) {
                }
           }) {//here before semicolon ; and use { }.
        @Override
        public Map<String, String> getHeaders() throws AuthFailureError {
            return super.getHeaders();
        }

        @Override
        public String getBodyContentType() {
            return super.getBodyContentType();
        }
    };