1

我尝试在以下代码中接收 http 响应:

public void httpRes (){
try {
    HttpClient client = new DefaultHttpClient();
    String postURL = "http://validate.jsontest.com/";
    HttpPost post = new HttpPost(postURL);
        List<NameValuePair> params = new ArrayList<NameValuePair>();
        params.add(new BasicNameValuePair("user", "kris"));
        params.add(new BasicNameValuePair("pass", "xyz"));
        UrlEncodedFormEntity ent = new UrlEncodedFormEntity(params, HTTP.UTF_8);
        post.setEntity(ent);
        HttpResponse responsePOST = client.execute(post);
        HttpEntity resEntity = responsePOST.getEntity();
        if (resEntity != null) {
            Log.i("RESPONSE",EntityUtils.toString(resEntity));
        }
} catch (Exception e) {
    e.printStackTrace();
}}

出现错误 -

LogCat 日志:

09-12 21:48:58.099: INFO/RESPONSE(28485): {
        "error": "No JSON to validate. Please post JSON to validate via the json parameter.",
        "validate": false
        }

我试图从 GET requsets 接收响应 - 一切都很好,但是当我尝试 POST 请求所有各种 POST 代码时 - 我无法得到答案!问题是什么?需要帮忙。

我也试过:

Map<String, String> comment = new HashMap<String, String>();
comment.put("password", "password");
comment.put("avatar", "httpssssssss");

String json = new GsonBuilder().create().toJson(comment, Map.class);
HttpResponse response = makeRequest("http://validate.jsontest.com/", json);
//Log.w(TAG, EntityUtils.toString(response));
try {
    HttpEntity entity = response.getEntity();
    InputStream is = entity.getContent();
    String sss= convertStreamToString(is);
    Log.w("SSSSSSSSSSSSSSSSSS", sss);
} catch (Exception ex) {
    Log.w("Exception exxx", ex);
}
public static HttpResponse makeRequest(String uri, String json) {
        try {
            HttpPost httpPost = new HttpPost(uri);
            httpPost.setEntity(new StringEntity(json));
            httpPost.setHeader("Accept", "application/json");
            httpPost.setHeader("Content-type", "application/json");
            return new DefaultHttpClient().execute(httpPost);
        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        return null;
    }

private static String convertStreamToString(InputStream is) {

        BufferedReader reader = new BufferedReader(new InputStreamReader(is));
        StringBuilder sb = new StringBuilder();
        String line = null;
        try {
            while ((line = reader.readLine()) != null) {
                sb.append((line + "\n"));
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                is.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return sb.toString();
    }

那么,问题是什么?

4

3 回答 3

1

http://validate.jsontest.com拒绝 POST 请求,除非Content-Type标头设置为application/x-www-form-urlencoded.

于 2014-10-03T16:49:52.947 回答
0

通过 GET 您的代码行

HttpPost httpPost = new HttpPost(uri);

应该

HttpPost httpPost = new HttpPost(uri+"?json="+json);

而且我认为您不需要下面的三行。

通过 POST 你需要像这样传递 json 参数。

params.add(new BasicNameValuePair("json", json));

假设 json 是一个包含您的 json 数据的变量。

您可以在浏览器中测试 GET 方法,例如http://validate.jsontest.com/?json= {validate: true}

于 2012-09-12T15:09:26.133 回答
-1

您需要将有效的 json 发布到 url http://validate.jsontest.com/来验证它。你所做的基本上是向 url 发送一个 post 请求,它不是 json 格式的。您必须将其编码为 json,然后将其发送到验证 url。

于 2012-09-12T15:06:05.637 回答