Aspose.Words for Java是功能丰富的文字处理API,开发人员可以在自己的Java应用程序中嵌入生成,修改,转换,呈现和打印Microsoft Word支持的所有格式的功能。它不依赖于Microsoft Word,但是它提供了Microsoft Word通过其API支持的功能。
>>Aspose.Words for Java更新至最新版,点击下载体验
创建一个新文件
我们将调用 不带参数的 Document构造函数来创建一个新的空白文档。如果要以编程方式生成文档,最简单的方法是使用 DocumentBuilder 类添加文档内容。以下代码示例显示了如何使用文档构建器创建文档:
// The path to the documents directory. String dataDir = Utils.getDataDir(CreateDocument.class); // Load the document. Document doc = new Document(); DocumentBuilder builder = new DocumentBuilder(doc); builder.write("hello world"); doc.save(dataDir + "output.docx");
注意默认值:
- 一个空白文档包含一个带有默认参数的部分,一个空段落和一些文档样式。实际上,此文档与在Microsoft Word中创建“新文档”的结果相同。
- 文档纸张尺寸为PaperSize.Letter
载入文件——从文件加载
要以任何LoadFormat 格式加载现有文档 ,请将文件名或流传递到其中一个Document构造函数中。加载文档的格式由其扩展名自动确定。
将文件名作为字符串传递给Document构造函数以从文件中打开现有文档。下面的代码示例演示如何从文件中打开文档:
String fileName = "Document.docx"; // Load the document from the absolute path on disk. Document doc = new Document(dataDir + fileName);
载入文件——从流加载
要从流中打开文档,只需将包含文档的流对象传递到Document构造函数中。下面的代码示例演示如何从流中打开文档:
String filename = "Document.docx"; // Open the stream. Read only access is enough for Aspose.Words to load a // document. InputStream in = new FileInputStream(dataDir + filename); // Load the entire document into memory. Document doc = new Document(in); System.out.println("Document opened. Total pages are " + doc.getPageCount()); // You can close the stream now, it is no longer needed because the document is // in memory. in.close();