本文概述
- Apache POI重新排序幻灯片示例
请参阅一个示例,在该示例中我们将第一张幻灯片与第二张幻灯片重新排序。
Apache POI重新排序幻灯片示例
package poiexample;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.List;
import org.apache.poi.xslf.usermodel.XMLSlideShow;
import org.apache.poi.xslf.usermodel.XSLFSlide;
public class ReOrderSlidesExample {
public static void main(String args[]) throws IOException{
try(XMLSlideShow ppt = new XMLSlideShow(new FileInputStream("srcmini.pptx"))){
// Getting all the slides
List<
XSLFSlide> slides = ppt.getSlides();
// Selecting the second slide
XSLFSlide secondslide = slides.get(1);
// Getting on the top
ppt.setSlideOrder(secondslide, 0);
// Writing Modifications
FileOutputStream out = new FileOutputStream("srcmini.pptx");
ppt.write(out);
}catch(Exception e) {
System.out.println(e);
}
}
}
输出:
重新排序之前
文章图片
【apache poi powerpoint幻灯片重新排序】重新排序后,请参见在第一位置到达第二张幻灯片。
文章图片
推荐阅读
- apache poi powerpoint超级链接
- apache poi powerpoint布局
- apache poi powerpoint图像
- apache poi powerpoint页面大小
- apache poi powerpoint幻灯片
- apache poi word文档段落
- apache poi超链接
- apache poi word表格
- apache poi word风格