Apache POI PPT - 演示文稿
-
简述
通常,我们使用 MS-PowerPoint 来创建演示文稿。 现在让我们看看如何使用 Java 创建演示文稿。 完成本章后,您将能够创建新的 MS-PowerPoint 演示文稿并使用您的 Java 程序打开现有的 PPT。 -
创建空演示文稿
要创建一个空的演示文稿,您必须实例化 org.poi.xslf.usermodel 包的 XMLSlideShow 类 -XMLSlideShow ppt = new XMLSlideShow();
使用 FileOutputStream 类将更改保存到 PPT 文档 -File file = new File("C://POIPPT//Examples//example1.pptx"); FileOutputStream out = new FileOutputStream(file); ppt.write(out);
下面给出的是创建空白 MS-PowerPoint 演示文稿的完整程序。import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import org.apache.poi.xslf.usermodel.XMLSlideShow; public class CreatePresentation { public static void main(String args[]) throws IOException { //creating a new empty slide show XMLSlideShow ppt = new XMLSlideShow(); //creating an FileOutputStream object File file = new File("example1.pptx"); FileOutputStream out = new FileOutputStream(file); //saving the changes to a file ppt.write(out); System.out.println("Presentation created successfully"); out.close(); } }
将上面的Java代码保存为CreatePresentation.java,然后在命令提示符下编译执行如下-$javac CreatePresentation.java $java CreatePresentation
如果你的系统环境配置了POI库,它会编译执行在你的当前目录下生成一个名为example1.pptx的空白PPT文件,并显示如下输出 在命令提示符下 -Presentation created successfully
空白的 PowerPoint 文档如下所示 - -
编辑现有演示文稿
要打开现有的演示文稿,请实例化 XMLSlideShow 类并传递要编辑的文件的 FileInputStream 对象,如 XMLSlideShow 构造函数的参数。File file = new File("C://POIPPT//Examples//example1.pptx"); FileInputstream inputstream = new FileInputStream(file); XMLSlideShow ppt = new XMLSlideShow(inputstream);
您可以使用 org.poi.xslf.usermodel 中 XMLSlideShow 类的 createSlide() 方法将幻灯片添加到演示文稿中 。XSLFSlide slide1 = ppt.createSlide();
下面给出了打开幻灯片并将其添加到现有 PPT 的完整程序 -import java.io.File; 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 EditPresentation { public static void main(String ar[]) throws IOException { //opening an existing slide show File file = new File("example1.pptx"); FileInputStream inputstream = new FileInputStream(file); XMLSlideShow ppt = new XMLSlideShow(inputstream); //adding slides to the slideshow XSLFSlide slide1 = ppt.createSlide(); XSLFSlide slide2 = ppt.createSlide(); //saving the changes FileOutputStream out = new FileOutputStream(file); ppt.write(out); System.out.println("Presentation edited successfully"); out.close(); } }
将上述 Java 代码保存为 EditPresentation.java,然后在命令提示符下编译并执行,如下所示 -$javac EditPresentation.java $java EditPresentation
它将编译并执行以生成以下输出 -slides successfully added
新增幻灯片的输出 PPT 文档如下 -在PPT中添加幻灯片后,可以对幻灯片进行添加、执行、读取、写入等操作。