Convert from .docx to .doc

Hi,

Most of our users are on .doc but some are on .dox.

We let them check in documents through a web page and then have them publicly downloadable for use by other users.

The problem is that if a user uploads a .docx file and a user who does not have office 2007 installed tries to view a .docx file then obviously they cannot view the file.

My solution is to convert .docx to .doc, is this possible with Aspose?

Can I take a .docx file and convert it into a .doc file?

Cheers

Paul

Hi

Thanks for your request. Sure, you can convert DOCX to DOC using Aspose.Words. Code is very simple:

Document doc = new Document("in.docx");
doc.Save("out.doc");

Please see the following link for more information:
https://docs.aspose.com/words/java/convert-a-document/
Best regards.