vote up 1 vote down star

In my application, I have a requirement to convert Java/VB/VB.net/etc program to HTML, and then use that HTML page (to insert in Word doc).

Sure we can write code for this, but this will entail programming for this too, and from more than one programming languages, and dealing with bugs. Whereas it needs to be released ASAP. Using 3rd party tool for this HTML generation is not an issue.

However this 3rd party tool, code to html formatter, should be free, robust, and should convert upto Java 1.5, and other language's recent version.

Do you know of any such converter (code to html converter/formatter) which is free, distributable, robust, and converts upto recent versions of more than one languages (including Java)?

To elaborate further, I am interested in a utility which will take source code file as input, and will generate HTML file as output. The HTML file should not use javascript to color the code, because then inserting in Word the coloring will be lost.

flag
Do you mean you have to display the source code in HTML pages? – tehvan Mar 2 at 12:43
I think that's what he means – Robert Gould Mar 2 at 12:47
Which way did you go with? I am curious. – Ascalonian Mar 17 at 18:00

4 Answers

vote up 1 vote down check

Pygments

Java example: http://pygments.org/demo/1476/

link|flag
This based on Python - how can I distribute this? Will this require generating EXE of the python module? – vikramsjn Mar 4 at 9:00
You could use Jython. It's a JAR. – vartec Mar 4 at 9:08
You mean Jython is a JAR? Does that mean pygments will have to be installed in Jython, and then executed from command line (using Jython)? Could you kindly elaborate your last comment. – vikramsjn Mar 4 at 13:07
Yes, I mean Jython is a JAR. It's a Python interpreter written in Java. Pygments are Python module, which can by interpreted by Jython – vartec Mar 4 at 13:12
Thanks a lot. Will try this approach. – vikramsjn Mar 4 at 13:27
vote up 0 vote down

If you want to go with the JavaDoc way, I would recommend using Natural Docs. However, if you want to simply show the Java and convert into a CSS formatted HTML section on your page, I would recommend using Google's Code Prettify. Check out the link to README for examples. You can also check out the Java Test Page to see how the Java will look.

link|flag
vote up 0 vote down

Javadoc will convert your code to HTML (along with the associated class trees and linkages, etc), but doesn't syntax highlight the code unfortunately. What you could do is add the Google Code Prettifier to each page, which could work.

link|flag
Well I thought that Javadoc only works on doc comments - will it really work on source code and generate html of code? – vikramsjn Mar 2 at 13:25
It's been a while since I've used it myself, but IIRC, it generates a number of things: class trees, function lists, etc, as well as syntax highlighted code. – nickf Mar 3 at 0:34
Just confirmed that Javadoc links to source, but that source is not syntax colored – vikramsjn Mar 3 at 12:18
vote up 0 vote down

I'm using Java2HTML. It runs as Eclipse plugin, and also from commandline or as ant script.

It can also convert to TeX and XML.

link|flag

Your Answer

Get an OpenID
or

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