Re: How to get output of xml in word format?
Posted By:
Lunkwill_Vroomfondel
Posted On:
Wednesday, April 12, 2006 05:45 AM
hi, i think basically, you need to call
WordFormatter wf = new WordFormatter();
wf.setData(yourxmldoc);
byte[] wordcontent = wf.transform();
you would of course have to implement the WordFormatter-class, or find one via google...