使用soapui调用返回是正常的
{
"code": 1000000,
"message": "未查询到该用户!"
}
代码调用中文变为了unicode编码
{"code":1000000,"message":"\u672A\u67E5\u8BE2\u5230\u8BE5\u7528\u6237\uFF01"}
是哪里写的不对吗o(╥﹏╥)o
Sender sender = Sender.create(req);
Response resp = sender.send();
String code = resp.getContent(Encoding.UTF8);