Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to parse a simple fragment of HTML with NekoHTML :

<h1>This is a basic test</h1>

To do so, I've set a specific Neko feature not to have any HTML, HEAD or BODY tag calling startElement(..) callback.

Unfortunatly, it doesn't work for me.. I certainly missed something but can't figured out what it would be.

Here is a very simple code to reproduce my problem :

 public static class MyContentHandler implements ContentHandler {

     public void characters(char[] ch, int start, int length) throws SAXException {
         String text = String.valueOf(ch, start, length);
         System.out.println(text);
     }

     public void startElement(String nameSpaceURI, String localName, String rawName, Attributes attributes) throws SAXException {
         System.out.println(rawName);
     }

     public void endElement(String nameSpaceURI, String localName, String rawName) throws SAXException {
         System.out.println("end " + localName);
     }
 }

And the main() to launch a test :

  public static void main(String[] args) throws SAXException, IOException {
       SAXParser saxReader = new SAXParser();
       // set the feature like explained in documentation : http://nekohtml.sourceforge.net/faq.html#fragments
       saxReader.setFeature("http://cyberneko.org/html/features/balance-tags/document-fragment", true);
       saxReader.setContentHandler(new MyContentHandler());
       saxReader.parse(new InputSource(new StringInputStream("<h1>This is a basic test</h1>")));
  }

The corresponding output :

HTML
HEAD
end HEAD
BODY
H1
This is a basic test
end H1
end BODY
end HTML

whereas I was expecting

H1
This is a basic test
end H1

Any idea ?

share|improve this question
If you set the feature to be false, do you get exactly the same output? – Paul Grime Sep 4 '11 at 17:19
Yes, exactly the same :-( – Gael Sep 5 '11 at 5:05

1 Answer

I finally got it !

Actually, I was parsing my HTML string in a GWT application, where I've added the gwt-dev.jar dependency. This jar packages a lot of external librairies, like the xercesImpl. But the version of embedded xerces classes does not match the one requiered by NeokHTML.

As a (strange) result, it appears that NeokHTML SAX parser didn't use any custom feature when using gwt-dev embedded xerces version.

So, I had to rework some code to remove the gwt-dev dependency, which by the way is not recommanded to be added to any standard GWT project.

share|improve this answer
To be more specific, gwt-dev.jar includes NekoHTML in version 1.9.13, which is bugged with fragment parsing. Fragment parsing works with 1.9.11 and 1.9.14, no luck :-( – Gael Sep 9 '11 at 5:53

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.