Java - Reading Comment from XML-File

三世轮回 提交于 2019-12-07 16:46:02

问题


I have to extract comments from a XML-File. I couldn't find a way to get them using JDOM or something else. At the moment I use Regex and FileReader but I don't feel like this is the way to go.

Can you use something like JDOM to get comments from a XML-File? Or ist it limited to Elements/Nodes and Attributes?


回答1:


You need to implement a lexical handler. More information over here - http://docs.oracle.com/javase/tutorial/jaxp/dom/readingXML.html

Look at the Lexical Controls chapter.




回答2:


I suggest StAX, fastest and simple

    XMLStreamReader xr = XMLInputFactory.newInstance().createXMLStreamReader(
            new FileInputStream("1.xml"));
    while (xr.hasNext()) {
        if (xr.next() == XMLStreamConstants.COMMENT) {
            String comment = xr.getText();
        }
    }



回答3:


Are you using XPath? If yes, you can select comments with comment() function.



来源:https://stackoverflow.com/questions/15245860/java-reading-comment-from-xml-file

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!