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

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. "<" = "&lt ;" and so on. I make a new xml which has this text string in it like:

&lt ;ul&gt ;

  &lt ; li &gt ; abcd &lt ; /&gt ;

&lt ; /ul &gt ;

when i parse this the output i get is <

Please help.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.