0

我正在使用 simpleFramework 来解析我的 android 应用程序中的 xml 文件。我的问题是解析法语文本,比如让我们说这个标签

<TagName>écrite</TagName> 

解析时我将收到的结果类似于“écrite” 这是 simpleFramework xml 中的编码(法语)问题。如何避免这种情况并让我的文字“écrite”

xml 标头具有 utf8 :

<?xml version="1.0" encoding="UTF-8"?>
4

1 回答 1

3

我之前在使用 SAX 解析器时遇到过这个问题。使用 Java 读取文件时,InputStream您需要在代码中指定流的编码 - 也许通过读取文件的第一行,如您所示。这是分配编码的代码;

SAXParserFactory saxParserFactory = SAXParserFactory.newInstance();     
final SAXParser saxParser = saxParserFactory.newSAXParser();
// Note the encoding on the reader...
final Reader reader = new InputStreamReader(<your file stream>, "UTF-8");       
final InputSource inputSource = new InputSource(reader);        
inputSource.setEncoding("UTF-8");
saxParser.parse(inputSource, <some handler>);

希望有帮助。如果没有,请返回您阅读 XML 文件的方式。

于 2013-02-07T14:22:03.997 回答