Hi, I use the Sax parser to parse my xml file, which I get from the Internet ... The problem is that regular xml is parsed fine, except for xml files that have the symbol "" in the attributes ..
every time I try to parse a file, I get the following error
02-11 16:57:35.547: INFO/System.out(754): org.apache.harmony.xml.ExpatParser$ParseException: At line 9, column 0: not well-formed (invalid token)
Is there any method with which I can bypass this ar symbol by processing it myself through java code ??? Thanx in advance ...
source
share