Question

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?

Was it helpful?

Solution 2

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.

OTHER TIPS

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();
        }
    }

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top