我复制并编辑了一些代码,然后在Android Studio的手机上运行了该代码:
try {
File myFile = new File(Storage.CONTENT_CACHE, "test.xml");
if(!myFile.exists()) {
String xml = "<?xml version='1.0' encoding='windows-1252'?><root>ä</root>";
OutputStreamWriter wrt = new OutputStreamWriter(new FileOutputStream(myFile), "Cp1252");
wrt.write(xml);
wrt.close();
}
SAXParserFactory sf = SAXParserFactory.newInstance();
SAXParser p = sf.newSAXParser();
InputSource inputSource = new InputSource();
inputSource.setByteStream(new FileInputStream(myFile));
p.parse(inputSource, new DefaultHandler() {
public void characters(char[] ch, int start, int length) throws SAXException {
String test = String.valueOf(ch, start, length);
String s = "breakpt";
}
});
} catch (Exception e) {
e.printStackTrace();
}
有人可以解释为什么我收到消息“格式不正确(无效令牌)”的异常吗?
答案 0 :(得分:1)
似乎您需要使用inputSource.setEncoding("windows-1252")
。其他库尝试检测字符集,但是我找不到任何可靠的字符集。
答案 1 :(得分:-1)
也许xml不接受任何编码,请搜索“ xml有效编码”