如何将json添加到java中的一个http文章的正文

我正在尝试在Java中发布一些JSON数据,以供我正在使用的Android应用程序使用。 下面是有效的,还是我需要以不同的方式推送JSONstring?

HttpPost httpost = new HttpPost("http://test.localhost"); httpost.setEntity(new StringEntity("{\"filters\":true}")); httpost.setHeader("Accept", "application/json"); httpost.setHeader("Content-type", "application/x-www-form-urlencoded; charset=UTF-8"); //... other java code to execute the apache httpclient 

先谢谢你

您应该将Content-Type标头设置为"application/json" 。 其他一切看起来不错。