该错误一般是编码带来的问题,比如在请求post的时候,使用了application/x-www-form-urlencoded的content type
那么请求传过来的string则需要用urlDecoder进行decode。否则就会报上述错误
body = java.net.URLDecoder.decode(body, "UTF-8");Source source = new StreamSource(new StringReader(body));
本文共 230 字,大约阅读时间需要 1 分钟。
该错误一般是编码带来的问题,比如在请求post的时候,使用了application/x-www-form-urlencoded的content type
那么请求传过来的string则需要用urlDecoder进行decode。否则就会报上述错误
body = java.net.URLDecoder.decode(body, "UTF-8");Source source = new StreamSource(new StringReader(body));
转载地址:http://kbexx.baihongyu.com/