tags:

views:

175

answers:

2

How can we generate javadoc as a word document instead of the traditional html pages?

A: 

You can't generate a Word document directly. However, you could try to generate Word document(s) from generated html files: Search Google

sfussenegger
+2  A: 

Hi, look into doclets, http://doclet.com which have plenty of examples of custom javadoc rendering (i.e into PDF's etc...) and also look into Apache POI (http://poi.apache.org/) for the generation of MS Office files

HTH

Mark