The value of attribute "title" associated with an element type "question" must not contain the '<' c

来源:互联网 发布:守望先锋 mac 编辑:程序博客网 时间:2024/06/02 01:46

xstream解析xml,生成没问题,解析老是报错,原来代码是

 return (T) xstream.fromXML(new FileReader(filepath));

将fileReader改成 FileInputStream,即

 return (T) xstream.fromXML(new FileInputStream(filepath));

就好了,还是编码的问题

阅读全文
0 0
原创粉丝点击