JavaでPOTX形式をマージする
サーバー側のJavaAPIを使用したネイティブPOTXドキュメントのマージ。
Javaを使用してPOTXファイルをマージする方法
POTXファイルをマージするために、 [Aspose.Slides for Java](https://products.aspose.com/slides/ja/java) 機能豊富で強力で使いやすいJavaプラットフォーム用のマージAPIであるAPI。最新バージョンはから直接ダウンロードできます [Maven](https://repository.aspose.com/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-slides) 次の構成を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でPOTXファイルをマージする手順
[Aspose.Slides for Java](https://products.aspose.com/slides/ja/java)APIとマージおよび連結する基本的なドキュメントは、わずか数行のコードで実行できます。
Presentationクラスのインスタンスを含む最初のPOTXファイルをロードします。
Presentationクラスのインスタンスを含む2番目のPOTXドキュメントをロードします。
2番目のPOTXファイルの各スライドをループします。
反復ごとに、addClone()を使用して最初のファイルでスライドを追加します。
save()メソッドを使用して、指定したパスに保存します
システム要求
Aspose.Slides for Javaは、すべての主要なプラットフォームとオペレーティングシステムでサポートされています。次の前提条件があることを確認してください。
-MicrosoftWindowsまたはJSP/JSFアプリケーションおよびデスクトップアプリケーション用のJavaランタイム環境と互換性のあるOS。 -最新バージョンのAspose.SlidesforJavaを直接入手する [Maven](https://repository.aspose.com/webapp/#/artifacts/browse/tree/General/repo/com/aspose/aspose-slides)。
POTXファイルのマージ-Java
// Load first POTX File
Presentation prest1 = new Presentation("prest1.potx");
// Load second POTX File
Presentation prest2 = new Presentation("prest2.potx");
// Merge
for (ISlide slide : prest2.getSlides()) {
// Merge from source to target
prest1.getSlides().addClone(slide);
}
// Save the File
prest1.save("merged-presentation.potx", SaveFormat.Potx);
PDFファイルをオンラインで結合
Aspose.Slides forJavaAPIについて
Aspose.Slides APIを使用して、Microsoft PowerPointドキュメントの読み取り、書き込み、操作、およびPDF、XPS、HTML、TIFF、ODP、その他のさまざまな形式への変換を行うことができます。新しいファイルを最初から作成し、サポートされている関連する形式で保存できます。 Aspose.Slidesは、プレゼンテーション、スライド、要素を作成、解析、または操作するためのスタンドアロンAPIであり、MicrosoftやOpenOfficeなどのソフトウェアに依存しません。Online POTX Merger Live Demos
Merge POTX documents right now by visiting our Live Demos website . The live demo has the following benefits
POTX POTX ファイル形式とは
Files with .POTX extension represent Microsoft PowerPoint template presentations that are created with Microsoft PowerPoint 2007 and above. This format was created to replace the POT file format that is based on the binary file format and is supported with PowerPoint 97-2003. The files 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を使用すると、を含む他の多くのファイル形式をマージすることもできます。