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

Got this error when parsing my html page using XPATH.. i am also using HTMLcleaner

enter image description here

If it is not clear i can even post my java code and html code

share|improve this question
This problem stems from treating HTML as XML and is unrelated to xpath. – phihag Mar 4 '11 at 11:59
XPath traverses an XML Infoset or XDM. It doesn't parse anything. – user357812 Mar 4 '11 at 14:41

1 Answer

up vote 5 down vote accepted

The original input is HTML and you're treating it as XML. XML has less predefined entities than HTML has. Either use an HTML parser, or declare the entity   in your XML parser, or textually replace   with   in the original input.

share|improve this answer

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.