Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to know which XML parser in java (if at all) can provide me the byte offset of an xml element it parses.

I am using Lucene to index my XML files and when I search a paricular word I need the output to include the XML Element , file name as well as the byte offset so that I can seek quickly to that offset.

share|improve this question

2 Answers

up vote 3 down vote accepted

Have a look at VTD-XML: http://vtd-xml.sourceforge.net, the VTDNav.getContentFragment() encodes the offset and length of an element: javadoc.

You get the offset by casting it into an int (int) VTDNav.getContentFragment().

share|improve this answer
thanks @morja I will try it out – Pratik Nov 24 '12 at 18:17

Consider StAX (javax.xml.stream), this is an example to start with:

    XMLInputFactory f = XMLInputFactory.newInstance();
    XMLStreamReader xr = f.createXMLStreamReader(new FileReader("test.xml"));
    while (xr.hasNext()) {
        int n = xr.next();
        Location l = xr.getLocation();
        switch (n) {
        case XMLStreamReader.START_ELEMENT:
            System.out.println(l.getColumnNumber());
            System.out.println(l.getLineNumber());
                                ... more 
            break;
        }
    }
share|improve this answer
Thanks Evgeniy I am not sure how line and column number will translate into byte/character offset as each line can have variable number of bytes – Pratik Nov 24 '12 at 18:36
The issue is that the SAX, DOM and StAX parsers all are limited to giving char offsets. If the backing stream uses variable length byte strings (UTF-8) then unless they control the byte stream to chat stream conversion, they cannot give byte offsets. The VTD api is the only one I know that offers the byte offset, and even then if you feed it a Reader and not an InputStream it will be unable to provide the byte offset – Stephen Connolly Nov 24 '12 at 18:45
Thank you Stephen – Pratik Nov 24 '12 at 18:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.