4

There is description tag in xml. It contains the html tags. I am using SAX parser in android to parse. But when it fetch data from the description tag then it does not fetch the html contents, not any tags. Then how i solve the problem of the html content parsing from the XML using SAX parser please help.

BenMorel
  • 34,448
  • 50
  • 182
  • 322
Amit Thaper
  • 2,117
  • 4
  • 26
  • 49

1 Answers1

4

It looks like you need wrap the description in CDATA element http://en.wikipedia.org/wiki/CDATA

Konstantin Burov
  • 68,980
  • 16
  • 115
  • 93