调用webservice从数据库中读取数据 这个错误的最终原因是: [ERROR] Invalid white space character (0xc) in text to output
org.apache.axis2.AxisFault: Invalid white space character (0xc) in text to output
Caused by: com.ctc.wstx.exc.WstxIOException: Invalid white space character (0xc) in text
to output 意思是输出文件中有空字符 检查了一下数据库字段存在 file:///C:/Users/Administrator/AppData/Local/YNote/Data/qq57D9FF2695CBD92A0CA37197DDB53806/c31bcd4a577f4800bdbbe8c15464c17e/clipboard.png
特殊字符。 转码:URLDecoder.decode("字段","UTF-8") 解码:URLEncoder.encode("字段","UTF-8")
|