How to create a blank PPT document using Java



Problem Description

How to create a blank PPT document using Java.

Solution

Following is the program to create a blank PPT document using Java.

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();
   }
}

Result

Blank PPT
java_apache_poi_ppt
Advertisements