vote up 4 vote down star

I have a Java string of XML content. I use Velocity to generate some HTML reports, and this XML needs to be included into one of those HTML files. It would be nice if this XML is syntax colored and formatted. Does anyone know of a Java library to do this?

flag

33% accept rate

2 Answers

vote up 1 vote down check

https://jhighlight.dev.java.net/

link|flag
vote up 0 vote down

How about transforming your xml to html using a XSLT stylesheet and the transform API. See Transform XML into HTML using XSLT: http://www.rgagnon.com/javadetails/java-0407.html

link|flag
The idea is that the output looks like XML, but with syntax colouring. – Peter Hilton Jan 24 at 9:58
XSLT can do that by replacing, say, <span class="codeKeyWord">..</span> with something like <span class="codeKeyWord" style="color:green">..</span>. It's just not very clean way to do it. – Esko Jan 24 at 13:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.