Xpath error related to "nbsp"
Got this error when parsing my html page using XPATH.. i am also using HTMLcleaner
If it is not clear i c开发者_JAVA百科an even post my java code and html code
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.
精彩评论