Как опубликовать строку JSON с Android

Я столкнулся с проблемой при попытке опубликовать json на сервере с Android. Ошибка:

Не удалось загрузить JSON. Специальные символы не должны быть включены в запрос. Пожалуйста, проверьте запрошенный JSON.

Я следовал многим примерам, но ни один из них не помог. Пожалуйста, предложите решение или помогите мне найти проблему в коде.

Ниже приведен код для размещения строки JSON на сервере.

public class JSONParser {

    static InputStream is = null;
    static JSONObject jObj = null;
    static String json = "";

    // constructor
    public JSONParser() {

    }

    public JSONObject getJSONFromUrl(String url) {

        // Making HTTP request
        try {
            // defaultHttpClient
            DefaultHttpClient httpClient = new DefaultHttpClient();
            HttpPost httpPost = new HttpPost(url);
            /* ====================================================================================================*/

                        JSONObject listobj = new JSONObject ();
                        JSONObject listInvoice = new JSONObject ();
                        listInvoice.put("client_id","");
                        listInvoice.put("date_from","");
                        listInvoice.put("date_to","");
                        listInvoice.put("invoice_number","");
                        listInvoice.put("invoice_record_status","");
                        listInvoice.put("invoice_status","");
                        listInvoice.put("page","1");
                        listInvoice.put("per_page_record","10");
                        listobj.put("listInvoice", listInvoice);


                      //--List nameValuePairs = new ArrayList(1);
                        List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);
                        nameValuePairs.add(new BasicNameValuePair("json_data", listobj.toString()));


                        httpPost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
                        Log.d("JSON",listobj.toString());
            /*======================================================================================================*/

            HttpResponse httpResponse = httpClient.execute(httpPost);
            String is = EntityUtils.toString(httpResponse.getEntity());

            Log.d("JSON","RESPONSE : " + is);

            //--HttpEntity httpEntity = httpResponse.getEntity();
            //--is = httpEntity.getContent();           

        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        catch (JSONException e) {
            Log.e("JSON",e.getMessage());
     }

        try {
            BufferedReader reader = new BufferedReader(new InputStreamReader(
                    is, "iso-8859-1"), 8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                sb.append(line + "\n");
            }
            is.close();
            json = sb.toString();
        } catch (Exception e) {
            Log.e("Buffer Error", "Error converting result " + e.toString());
        }

        // try parse the string to a JSON object
        try {
            jObj = new JSONObject(json);
        } catch (JSONException e) {
            Log.e("JSON Parser", "Error parsing data " + e.toString());
        }

        // return JSON String
        return jObj;

      }
     }
}
0
задан ariefbayu 5 April 2012 в 07:50
поделиться