如何在java中将json添加到http帖子的正文中

2022-09-01 03:17:48

我正在尝试在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

提前感谢您


答案 1

应将标头设置为 。其他一切看起来都很好。Content-Type"application/json"


答案 2