What is the easiest way to convert xml to html? I have xml file coming to java class. There is few tags with content. I need to convert them into html. Is there any tools or libraries?
+1
A:
Use XSLT to convert your XML into the desired XHTML.
You will probably find that the XHTML gets a lot simpler if you use CSS.
Thorbjørn Ravn Andersen
2010-03-16 14:08:41
Note that the output doesn't have to be XHTML, though. Usually an XSLT processor is able to emit HTML as well.
Joey
2010-03-16 14:11:53