0

我遇到了一个问题,有效的 JSON 字符串不能成为 JSON 对象。

当我从浏览器调用我的 url 时,它会返回有效的 JSON 字符串。请检查

public void initializeHttpClient() { httpclient = new DefaultHttpClient(); nameValuePairs = new ArrayList(2); }

public JSONObject sendHttpRequest(String url) {
    try {
        postRequest = new HttpPost(url);
        postRequest.setHeader("Content-type", "application/json");
        postRequest.setEntity(new UrlEncodedFormEntity(nameValuePairs,HTTP.UTF_8));
        httpResponse = httpclient.execute(postRequest);
        httpEntity = httpResponse.getEntity();
        if (httpEntity != null) {
            String responseString = EntityUtils.toString(httpEntity);

// 这里问题正在发生..

            JSONObject responseObject = new JSONObject(responseString);
            return responseObject;
        }
    } catch (Exception e) {
        e.getMessage();
    }
    return null;
}

public JSONObject getLogin(String serviceUrl,String o_email, String o_password,String o_user_id, String o_network_type, String o_format) {
    initializeHttpClient();
    if(serviceUrl!=null){
        nameValuePairs.add(new BasicNameValuePair("login_email",o_email));
        nameValuePairs.add(new BasicNameValuePair("password",o_password));
        nameValuePairs.add(new BasicNameValuePair("user_id",o_user_id));
        nameValuePairs.add(new BasicNameValuePair("network_type",o_network_type));
        nameValuePairs.add(new BasicNameValuePair("format",o_format));
        return sendHttpRequest(serviceUrl);
    }
    return null;
}
4

2 回答 2

1

例如,字符串"Hello There"不是有效的 JSON。如果你想防范这种情况,你可以随时用

responseString = "{ \"result\" : " + responseString + " }";

然后将其传递给 JSONObject ,它将始终正确解析

于 2013-01-08T06:53:05.223 回答
0
 JSONObject responseObject = new JSONObject(responseString);

如果您的输入不是 JSON 格式,则会引发无法转换为 JSONObject异常。检查responseString是否是格式良好的 JSON 对象。

于 2013-01-08T06:48:16.120 回答