tags:

views:

108

answers:

3

I've got a requirement where I need to save HTML documents in memory as Word .DOC files.

Can anybody give me some links to both closed and open source libraries that I can use to do this?

Also, I should edit this question to add the language I'm using in order to narrow down the choices.

Thanks!

+1  A: 

The easiest option is, save the HTML and just give it a .doc extention. Word will figure it out.

d4nt
This approach has nothing to do with programming -> question should be migrated to superuser.com
Martin Bøgelund
Lol the obvious solution.
Will
You're assuming it has nothing to do with programming. I assumed it did. Who's the bigger ass?
Will
A: 

Other Alternatives from just renaming the file to .doc.....

http://msdn.microsoft.com/en-us/library/microsoft.office.interop.word%28office.11%29.aspx

Here is a good place to start. You can also try using this Office Open XML.

http://www.ecma-international.org/publications/standards/Ecma-376.htm

xxmrlnxx
A: 

How about Apache POI?

Carlos