1

知道我在这里做错了什么。

这是xml文件

<text xml:space="preserve">{{Redirect|Anarchist|the fictional character|Anarchist (comics)}}
{{Redirect|Anarchists}}
{{Anarchism sidebar}}
{{Libertarianism sidebar}}
</text>

现在,当我在 SAX 解析器的帮助下解析它时,例如这是我的字符方法

public void characters (char ch[], int start, int length) throws SAXException{

    System.out.println(text);
    if (text){
        System.out.println(testData); //testData is StringBuilder
        if (testData != null){
            for (int j=start; j < (start + length); j++){
                testData.append(ch[j]);
            }
        }                           
    }
    text = false
}

这是我的 startElement 方法

public void startElement(String uri, String localname, String qName, Attributes attributes) throws SAXException {
    if (qName.equalsIgnoreCase("text")) {
        text = true;
    }
}

但我的字符函数只被调用一次。我以为它会被调用几次,然后我可以附加

4

1 回答 1

0

“忽略空白”标志控制 XML 解析器是否认为 XML 元素之间的空白很重要,或者是否应该忽略它。只要您没有设置 ignoreWhitespace,解析器在将所有字符(无论是否空白)提供给您的 characters() 方法时都是非常正确的。

于 2012-04-14T06:17:52.100 回答