文檔首頁>>Aspose中文文檔>>創(chuàng)建文檔
創(chuàng)建文檔
Aspose.Words是一種高級Word文檔處理API,用于執(zhí)行各種文檔管理和操作任務(wù)。API支持生成,修改,轉(zhuǎn)換,呈現(xiàn)和打印文檔,而無需在跨平臺應(yīng)用程序中直接使用Microsoft Word。
Aspose API支持流行文件格式處理,并允許將各類文檔導(dǎo)出或轉(zhuǎn)換為固定布局文件格式和最常用的圖像/多媒體格式。
如何使用 Aspose.Words創(chuàng)建文檔
在Aspose.Words中,我們通常使用Document類來創(chuàng)建文檔,并使用DocumentBuilder類來修改它。
以下代碼示例展示了如何創(chuàng)建文檔:
Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); builder.Writeln("Hello World!"); doc.Save("CreateDocument.docx");如何使用 Open XML SDK 創(chuàng)建文檔
您還可以使用 Open XML SDK 執(zhí)行相同的操作。 同時(shí)請注意,它看起來有些更復(fù)雜、更麻煩。
以下是我們需要添加的命名空間:
using DocumentFormat.OpenXml; using DocumentFormat.OpenXml.Packaging; using DocumentFormat.OpenXml.Wordprocessing; using NUnit.Framework;
以下代碼示例展示了如何創(chuàng)建文檔:
public void CreateADocumentFeature() { using (WordprocessingDocument wordDocument = WordprocessingDocument.Create(ArtifactsDir + "Create a document - OpenXML.docx", WordprocessingDocumentType.Document)) { MainDocumentPart mainPart = wordDocument.AddMainDocumentPart(); // Create the document structure and add some text. mainPart.Document = new Document(); Body body = mainPart.Document.AppendChild(new Body()); Paragraph para = body.AppendChild(new Paragraph()); Run run = para.AppendChild(new Run()); run.AppendChild(new Text("Create text in body - Create wordprocessing document")); } }您可以從Aspose.Words GitHub 下載此示例的示例文件。