-1

JsonObjectRequest は常に Android で onErrorResponse を返します

public void clickFind(final View view) {
    EditText find = (EditText) findViewById((R.id.editText));
  //  String
   web = "http://api.tvmaze.com/search/shows?q=" + find.getText();
    JsonObjectRequest request = new JsonObjectRequest(Request.Method.GET, web, null, new Response.Listener<JSONObject>() {
        @Override
        public void onResponse(JSONObject response) {
            try {
                JSONArray jsonArray = response.getJSONArray("value");

                lv = (ListView) findViewById(R.id.listView);
                RowItem ri = null;
                 URL newurl = null;
                for (int i = 0; i < jsonArray.length(); i++) {

                    try {
                        newurl = new URL(jsonArray.getJSONObject(i).getString("image"));
                    } catch (MalformedURLException e) {
                        e.printStackTrace();
                    }
                    ri = new RowItem(newurl,jsonArray.getJSONObject(i).getString("name")
                         ,jsonArray.getJSONObject(i).getString("summary"));


                }

                CustomListViewAdapter adapter = new CustomListViewAdapter(view.getContext(),R.layout.cf, ri);
                lv.setAdapter(adapter);

            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
    }, new Response.ErrorListener() {

        @Override
        public void onErrorResponse(VolleyError error) {
            Context context = view.getContext();
            Toast.makeText(context, "error to upload "+web, Toast.LENGTH_SHORT).show();
        }
    });
    queue.add(request);

} }

例: http://api.tvmaze.com/search/shows?q=bob

どちらが返信をもたらしますが、6 台の Android フォンを実行すると常にエラーが発生します。

4

3 に答える 3

0
 JsonArrayRequest request = new JsonArrayRequest(Request.Method.GET, web, null, new Response.Listener<JSONArray>() {

        public void onResponse(JSONArray response) {

            try {
                whichList++;
                lv = (ListView) findViewById(R.id.listView);
                RowItem ri[] = new RowItem[response.length()];


                for (int i = 0; i < response.length(); i++) {

                    JSONObject jsonArray = response.getJSONObject(i).getJSONObject("show");
                    ri[i] = new RowItem(jsonArray.getString("id"), "", "", jsonArray.getJSONObject("image").getString("medium"), jsonArray.getString("name")
                            , jsonArray.getString("summary"));


                }

                ArrayAdapterItem adapter = new ArrayAdapterItem(view.getContext(), R.layout.cf, ri);

                lv.setAdapter(adapter);

            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
    }, new Response.ErrorListener() {

        @Override
        public void onErrorResponse(VolleyError error) {
            Context context = view.getContext();
            Toast.makeText(context, "error to upload " + web, Toast.LENGTH_SHORT).show();
        }
    });
    queue.add(request);

}
于 2016-05-22T19:19:23.303 に答える
0

The response from http://api.tvmaze.com/search/shows?q=bob is a JSON Array and not JSONObject. So you need to use JsonArrayRequest instead of JsonObjectRequest like this -

JsonArrayRequest request = new JsonArrayRequest(Request.Method.GET, web,new Response.Listener<JSONArray>() {
            @Override
            public void onResponse(JSONArray response) {
                try {

                    for(int i = 0; i < response.length(); i++){
                        JSONObject obj = response.getJSONObject(i);//This is your Json object which you can parse now.
                    }

                } catch (JSONException e) {
                    e.printStackTrace();
                }
            }
        }, new Response.ErrorListener() {

            @Override
            public void onErrorResponse(VolleyError error) {

                 Context context = view.getContext();
            Toast.makeText(context, "error to upload "+web, Toast.LENGTH_SHORT).show();
            }
        });
于 2016-05-17T21:17:54.617 に答える