I have an xml file from which i extract the body which has text between html tags. Now i parse the html using jsoup. I use Jsoup.clean(html, Whitelist.relaxed());. I get the required html format. Now I have to put this html in an xml so i convert all tags i.e. "<" = "< ;" and so on. I make a new xml which has this text string in it like:
< ;ul> ;
< ; li > ; abcd < ; /> ;
< ; /ul > ;
when i parse this the output i get is <
Please help.