我正在尝试在java中为我正在处理的Android应用发布一些JSON数据。以下是有效的还是我需要以不同的方式推送JSON字符串?
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
提前谢谢
答案 0 :(得分:41)
您应该将Content-Type
标头设置为"application/json"
。其他一切看起来都不错。