Apache POI PPT - Mesclando
Você pode mesclar várias apresentações usando o importContent() método do XMLSlideShowclasse. A seguir está o programa completo para mesclar duas apresentações -
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import org.apache.poi.xslf.usermodel.XMLSlideShow;
import org.apache.poi.xslf.usermodel.XSLFSlide;
public class MergingMultiplePresentations {
public static void main(String args[]) throws IOException {
//creating empty presentation
XMLSlideShow ppt = new XMLSlideShow();
//taking the two presentations that are to be merged
String file1 = "presentation1.pptx";
String file2 = "presentation2.pptx";
String[] inputs = {file1, file2};
for(String arg : inputs){
FileInputStream inputstream = new FileInputStream(arg);
XMLSlideShow src = new XMLSlideShow(inputstream);
for(XSLFSlide srcSlide : src.getSlides()) {
//merging the contents
ppt.createSlide().importContent(srcSlide);
}
}
String file3 = "combinedpresentation.pptx";
//creating the file object
FileOutputStream out = new FileOutputStream(file3);
// saving the changes to a file
ppt.write(out);
System.out.println("Merging done successfully");
out.close();
}
}
Salve o código acima como MergingMultiplePresentations.javae, em seguida, compilar e executá-lo no prompt de comando da seguinte maneira -
$javac MergingMultiplePresentations.java
$java MergingMultiplePresentations
Ele irá compilar e executar para gerar a seguinte saída -
Merging done successfully
O instantâneo a seguir mostra a primeira apresentação -
O instantâneo a seguir mostra a segunda apresentação -
A seguir está o resultado do programa após a fusão dos dois slides. Aqui você pode ver o conteúdo dos slides anteriores mesclados.