PNG JPG BMP TIFF POT
Aspose.Slides  for Java

在 Java 中合并 POT 格式

使用服务器端 Java API 的本地 POT 文档合并。

如何使用 Java 合并 POT 文件

为了合并 POT 文件,我们将使用

Aspose.Slides for Java

API是一个功能丰富、功能强大且易于使用的Java平台合并API。您可以直接从

Maven

并通过将以下配置添加到 pom.xml 将其安装在基于 Maven 的项目中。

存储库


<repository>
    <id>AsposeJavaAPI</id>
    <name>Aspose Java API</name>
    <url>https://releases.aspose.com/java/repo/</url>
</repository>

依赖


<dependency>
    <groupId>com.aspose</groupId>
    <artifactId>aspose-slides</artifactId>
    <version>version of aspose-slides API</version>
    <classifier>jdk17</classifier>
</dependency>

在 Java 中合并 POT 文件的步骤

只需几行代码即可完成与 Aspose.Slides for Java API 合并和连接的基本文档。

  1. 使用 Presentation 类的实例加载第一个 POT 文件。

  2. 使用 Presentation 类的实例加载第二个 POT 文档。

  3. 循环浏览第二个 POT 文件的每张幻灯片。

  4. 在每次迭代中,使用 addClone() 添加带有第一个文件的幻灯片。

  5. 使用 save() 方法保存到指定路径

系统要求

Aspose.Slides for Java 支持所有主要平台和操作系统。请确保您具有以下先决条件。

  • 适用于 JSP/JSF 应用程序和桌面应用程序的 Microsoft Windows 或具有 Java 运行时环境的兼容操作系统。
  • 直接从 Java 获取最新版本的 Aspose.Slides [Maven](https://repository.aspose.com/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-slides)。
 

合并 POT 文件 - Java

// Load first POT File
Presentation prest1 = new Presentation("prest1.pot");

// Load second POT File
Presentation prest2 = new Presentation("prest2.pot");

// Merge
for (ISlide slide : prest2.getSlides()) {
	// Merge from source to target
	prest1.getSlides().addClone(slide);
}

// Save the File
prest1.save("merged-presentation.pot", SaveFormat.Pot);  
 
  • 在线合并 PDF 文件

    如何在 Python 中合并 PDF

    关于 Aspose.Slides for Java API

    Aspose.Slides API 可用于读取、编写、操作 Microsoft PowerPoint 文档并将其转换为 PDF、XPS、HTML、TIFF、ODP 和各种其他格式。可以从头开始创建新文件并将其保存为相关支持的格式。 Aspose.Slides 是一个独立的 API,用于创建、解析或操作演示文稿、幻灯片和元素,它不依赖于 Microsoft 或 OpenOffice 等任何软件。

    Online POT Merger Live Demos

    Merge POT documents right now by visiting our Live Demos website . The live demo has the following benefits

      No need to download Aspose API.
      No need to write any code.
      Just upload your POT files.
      It will be merged and concatenated instantly.

    POT 什么是POT文件格式

    Files with .POT extension represent Microsoft PowerPoint template files created by PowerPoint 97-2003 versions. Files created with these versions of Microsoft PowerPoint are in binary format as compared to those created in Office OpenXML file formats using the higher versions of PowerPoint. The files, hence, generated can be used to create presentations that have same layout and other settings required to be applied to new files. These settings can include styles, backgrounds, colour palette, fonts and defaults. Such files are generated in order to create ready-to-use template files for official use.

    阅读更多

    其他支持的合并格式

    使用 Java,One 还可以合并许多其他文件格式,包括..

    ODP (OpenDocument 演示格式)
    OTP (OpenDocument 标准格式)
    POTM (微软 PowerPoint 模板文件)
    POTX (Microsoft PowerPoint 模板演示文稿)
    PPS (幻灯片放映)
    PPSM (启用宏的幻灯片放映)
    PPSX (幻灯片放映)
    PPT (微软PowerPoint 97-2003)
    PPTM (启用宏的演示文件)
    PPTX (打开 XML 表示格式)