如何使用 Java 建立一個空白 PPT 文件



問題描述

如何使用 Java 建立一個空白 PPT 文件。

解決方案

以下是如何使用 Java 建立一個空白 PPT 文件的程式。

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import org.apache.poi.xslf.usermodel.XMLSlideShow;

public class CreatingBlankPPT {
   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();
   }
}

結果

Blank PPT
java_apache_poi_ppt
廣告
© . All rights reserved.