如何在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
提前感谢您