Java版Word开发工具Aspose.Words基础教程:创建或加载文档

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();

    了解更多Aspose文档管理产品  Aspose技术交流群(761297826)

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值