Menu

Save Word Document

Shoaib

Apache POI WP

XWPFDocument document = new XWPFDocument();
XWPFParagraph tmpParagraph = document.createParagraph();

XWPFRun tmpRun = tmpParagraph.createRun();
tmpRun.setText("Apache Sample Content for Word file.");

FileOutputStream fos = new FileOutputStream("data/Apache_SaveDoc.doc");
document.write(fos);
fos.close();

Aspose.Words

Document doc = new Document();

// DocumentBuilder provides members to easily add content to a document.
DocumentBuilder builder = new DocumentBuilder(doc);

// Write a new paragraph in the document with some text as "Sample Content..."
builder.writeln("Aspose Sample Content for Word file.");

// Save the document in DOCX format. The format to save as is inferred from the extension of the file name.
// Aspose.Words supports saving any document in many more formats.
doc.save("data/Aspose_SaveDoc.docx",SaveFormat.DOCX);

Download Source Code
Many more examples are available at Aspose Docs


Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.