可以考虑将 String respBody = EntityUtils.toString(entity); 改为 String respBody = EntityUtils.toString(entity, "utf-8"); 以回避中文乱码问题(平台约定是utf-8)。