我在这里陷入困境:这让我感到困惑。
代码
StringEntity stringEntityInstance = new StringEntity("some string", "UTF-8");
HttpPost req = new HttpPost("myurl");
req.setEntity(stringEntityInstance);
code A
,那么我将面临来自API的一些JSON错误code B
,我就不会遇到任何问题。代码A
stringEntityInstance.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE,”application/json"));
代码B
req.setHeader(HTTP.CONTENT_TYPE,”application/json");
感谢任何帮助!