Posted By:
matthew_payne
Posted On:
Thursday, January 17, 2002 09:17 AM
This has what you are looking for. You can paste java/jsp code and it has a "plugin" to produce html that is color coded the same way.
Re: What tool makes me able to generate an<br>HTML from a javasource? I want to display <br>my .java as HTML...
Posted By:
Matt_Doar
Posted On:
Friday, December 21, 2001 06:45 PM
Check out JDK1.4 javadoc. It has a source documentation feature which will do this for you
~Matt
doar@pobox.com
Re: What tool makes me able to generate an<br>HTML from a javasource? I want to display <br>my .java as HTML...
Posted By:
matthew_magliocca
Posted On:
Sunday, December 16, 2001 04:21 PM
i'm not sure what your asking. If all you want to go is generate an html document from java code use:
PrintWriter out = response.getWriter();
out.println("
it will create a web page with every feature on it you tell it to print.