Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i am working in JSF Application and in this application using some code i have create a HTML file that is store in my server and now i want to convert that HTML file in to .DOC file ..... so please help me

share|improve this question

4 Answers

There are tools that convert HTML to PDF: Convert an HTML file to a PDF with their pictures and styles using Java

Then use: http://pdf-to-doc.software.informer.com/

share|improve this answer
thank's for your response but now i did it using import officetools.OfficeFile jar...... – Jimit Tank Dec 16 '10 at 8:48

You could strip it of script and comments etc, then load it into Word and save it as .doc.

share|improve this answer
thank's for your response but now i did it using import officetools.OfficeFile jar...... – Jimit Tank Dec 16 '10 at 8:48
up vote 0 down vote accepted

A solution is i have Download a

officetools.OfficeFile;

this jar file and after write some code that can easy get from the net...

share|improve this answer

You can convert HTML to XML (using XSLT) and load it into Word afterwards. I did it while converting HTML page with tables to XML with XSLT file attached and it worked just fine.

share|improve this answer
thank's for your response but now i did it using import officetools.OfficeFile jar...... – Jimit Tank Dec 16 '10 at 8:47

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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