彩票走势图

Word处理控件Aspose.Words功能演示:在 C++ 中将 Word DOC 或 DOCX 转换为 PDF

翻译|使用教程|编辑:胡涛|2023-03-28 10:38:30.533|阅读 87 次

概述:本文旨在为您提供最好的 在Java中创建MS Word文档的最简单方法不需要MS Office

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

相关链接:

aspose下载

Aspose.Words 是一种高级Word文档处理API,用于执行各种文档管理和操作任务。API支持生成,修改,转换,呈现和打印文档,而无需在跨平台应用程序中直接使用Microsoft Word。此外,

Aspose API支持流行文件格式处理,并允许将各类文档导出或转换为固定布局文件格式和最常用的图像/多媒体格式。

Aspose.words 最新下载

近年来,动态生成Word文档已成为撰写报告、报价、发票和其他类型文档的流行功能。有各种库可供使用,它们允许您 在Java中以编程方式生成MS Word文档.但是,其中一些需要MS Office,而另一些则需要编写复杂的代码。考虑到这些问题,本文旨在为您提供最好的 在Java中创建MS Word文档的最简单方法不需要MS Office。此外,您还将学习如何 自动化MS Word用最少的简单代码行来实现这些功能。

创建Word文档的Java库

在本文中,我们将使用Aspose.WordsforJava,这是一个功能丰富的库,用于在基于Java的应用程序中创建、编辑或转换Word文档。您可以下载API的JAR或使用以下Maven配置安装它:

储存库:


<repository>
<id>AsposeJavaAPI</id>
<name>Aspose Java API</name>
<url>//repository.aspose.com/repo/</url>
</repository>


依赖性:


<dependency>
<groupId>com.aspose</groupId>
<artifactId>aspose-words</artifactId>
<version>22.11</version>
<classifier>jdk17</classifier>
</dependency>


如何在Java中创建Word文档

大多数时候,Word文档中的相当一部分内容是基于文本的。因此,我们将通过创建一个带有标题和段落的Word文档开始我们的旅程。

以下是从头开始创建Word文档的步骤:

  • 首先,创建Document类的一个实例。
  • 创建一个DocumentBuilder对象,并使用Document对象对其进行初始化。
  • 使用Font类并设置字体大小、系列等。
  • 使用ParagraphFormat类设置段落的财产。
  • 使用DocumentBuilder.Write()方法将文本写入文档。
  • 最后,调用Document.save()方法来创建文档。
将 DOCX 中的图像/文本压缩应用于 PDF 转换

下面的代码示例演示如何在Java中创建包含文本的Word文档。


// Create a Document object
Document doc = new Document();
// Create a DocumentBuilder object
DocumentBuilder builder = new DocumentBuilder(doc);
// Specify font formatting
Font font = builder.getFont();
font.setSize(18);
font.setBold(true);
font.setColor(Color.BLACK);
font.setName("Arial");
builder.write("How to Create a Rich Word Document?");
builder.insertBreak(BreakType.LINE_BREAK);
// Start the paragraph
font.setSize(12);
font.setBold(false);
ParagraphFormat paragraphFormat = builder.getParagraphFormat();
paragraphFormat.setFirstLineIndent(12);
paragraphFormat.setKeepTogether(true);
builder.write("This article shows how to create a Word document containing text, images and lists.");
// Save the document
doc.save("Rich Word Document.docx");


输出 :

Generate Word Document in Java

在Java中在Word文档中生成表

Word文档中的表格用于以行和列的形式组织内容。在本节中,我们将创建一个包含两行和两列的简单表。创建表包括四个基本操作:

  • Starting the table 启动表
  • Inserting a cell 插入单元格
  • Ending the row 结束行
  • Ending the table 结束表

以下是在Java中创建Word文档中的表的步骤:

  • 首先,创建Document和DocumentBuilder类的对象。
  • 使用table类创建一个表。
  • 使用DocumentBuilder.insertCell()方法插入单元格。
  • 根据您的要求设置表格的财产。
  • 使用DocumentBuilder.write()方法将文本添加到单元格中。
  • 分别使用DocumentBuilder.endRow()和DocumentBuilder.endTable()方法结束行和表。
    最后,保存文档。

下面的示例显示如何生成Word文档并向其中添加表。

// Create a Document object
Document doc = new Document();
// Create a DocumentBuilder object
DocumentBuilder builder = new DocumentBuilder(doc);
// Create table
Table table = builder.startTable();
// Insert a cell
builder.insertCell();
table.autoFit(AutoFitBehavior.AUTO_FIT_TO_WINDOW);
builder.getCellFormat().setVerticalAlignment(CellVerticalAlignment.CENTER);
builder.write("This is Row 1 Cell 1");
builder.insertCell();
builder.write("This is Row 1 Cell 2");
// End row
builder.endRow();
// start a next row and set its properties
builder.getRowFormat().setHeight(100);
builder.getRowFormat().setHeightRule(HeightRule.EXACTLY);
builder.insertCell();
builder.write("This is Row 2 Cell 1");
builder.insertCell();
builder.write("This is Row 2 Cell 2");
builder.endRow();
// End table
builder.endTable();
// Save the document
doc.save("Rich Word Document.docx");

输出 :

Java generate Word document with table

Java Word自动化-插入列表文档

以下是向Word文档添加列表的步骤。

  • 首先,创建一个Document类的对象。
  • 使用document.getLists().Add()方法将所需类型的列表添加到文档中。
  • 将文档中的列表获取到列表对象中。
  • 使用DocumentBuilder对象填充列表。
  • 最后,保存文档。

以下代码示例显示了如何使用 Java 在 Word 文档中创建列表。

// Create a Document object
Document doc = new Document();
doc.getLists().add(ListTemplate.BULLET_CIRCLE);
List list = doc.getLists().get(0);
// Set true to specify that the list has to be restarted at each section.
list.isRestartAtEachSection(true);
DocumentBuilder builder = new DocumentBuilder(doc);
builder.getListFormat().setList(list);
for (int i = 1; i < 45; i++) {
builder.writeln(String.format("List Item " + i));
// Insert section break.
if (i == 15)
builder.insertBreak(BreakType.SECTION_BREAK_NEW_PAGE);
}
builder.getListFormat().removeNumbers();
// Save the document
doc.save("Rich Word Document.docx");

输出 :

Insert List in Word docx in Java

Java生成Word文档并插入图像

将图像插入Word文档就像馅饼一样简单。以下是执行此操作的一些简单步骤:

  • 首先,创建一个 Document 文件
  • 创建对象 DocumentBuilder 文档生成器 类并使用文件 对象。
  • 插入图像使用 DocumentBuilder.insertImage() 文档生成器.insertImage() 方法
  • 最后,保存文档。

下面的代码示例显示了如何在Java中将图像插入Word文档。

// Create a Document object
Document doc = new Document();
// Create DocumentBuiler
DocumentBuilder builder = new DocumentBuilder(doc);
// Insert Image
builder.insertImage("aspose-words.png");
// Save the document
doc.save("Rich Word Document.docx");

输出:

Insert Image in Word docx in Java

以上便是在 C++ 中将 Word DOC 或 DOCX 转换为 PDF ,要是您还有其他关于产品方面的问题,欢迎咨询我们,或者加入我们官方技术交流群。


欢迎下载|体验更多Aspose产品

点此获取更多Aspose产品信息 或 加入Aspose技术交流群(761297826

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@cahobeh.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP