スライドを1つのプレゼンテーションから別のJavaを使用してコピー


この記事では、1つのPowerPointプレゼンテーションからスライドをコピーする方法を紹介します.Java用プレゼンテーション.
jarの依存性をインポートする
free libraryをダウンロードして、それを解凍してください.その後、尖塔を追加します.プレゼンテーション.プロジェクトに依存するファイル.
● MavenプロジェクトにJAR依存を追加するには、POMに次の構成を追加します.XML
<repositories>
    <repository>
        <id>com.e-iceblue</id>
        <name>e-iceblue</name>
        <url>http://repo.e-iceblue.com/nexus/content/groups/public/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>e-iceblue</groupId>
        <artifactId>spire.presentation.free</artifactId>
        <version>3.9.0</version>
    </dependency>
</dependencies>
サンプルコード
import com.spire.presentation.FileFormat;
import com.spire.presentation.Presentation;

public class CopySlides {
    public static void main(String[] args) throws Exception {

        //Create a Presentation object to load the first document
        Presentation pptOne= new Presentation();
        pptOne.loadFromFile("test1.pptx");

        //Create a Presentation object to load the second document
        Presentation pptTwo = new Presentation();
        pptTwo.loadFromFile("input1.pptx");

        //Insert the specific slide of the first document to the specified position on the second document
        pptTwo.getSlides().insert(1,pptOne.getSlides().get(0));

        //Append the specific slide of the first document to the end of the second document
        pptTwo.getSlides().append(pptOne.getSlides().get(2));

        //Save the second document to file
        pptTwo.saveToFile("CopySlides.pptx", FileFormat.PPTX_2013);
    }
}