Open In App

Java Program to Create a Blank PPT Document

Last Updated : 04 Jul, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Program to create a blank PPT document using Java. The external jar(Java archive) file is required for the creation of a new PPT document. Below is the implementation for the same. An object of XMLSlideShow class inside External Apache POI module is required for the creation of a new PPT.

Algorithm:

  • Created using the APACHE POI module.
  • Creating a new empty slide show by creating an object of XMLSlideShow class.
  • Creating a FileOutputStream object.
  • After that writing the changes to the file.

Note: External files are required to download for performing the operation. For more documentation of the module used refer to this

Implementation:

Java




// Creating a blank PPT document using java
import org.apache.poi.xslf.usermodel.XMLSlideShow;
import java.io.*;
 
class GFG {
    public static void main(String[] args)
        throws IOException
    {
        // Creating a new empty slide show
        // by creating an object of XMLSlideShow class.
        XMLSlideShow PPT = new XMLSlideShow();
 
        // Creating a FileOutputStream object
        File newFile = new File("GeeksforGeeks.pptx");
        FileOutputStream output
            = new FileOutputStream(newFile);
 
        // After that writing
        // the changes to the file.
        PPT.write(output);
        System.out.println(
            "Blank PPT has been created successfully");
        output.close();
    }
}


 

 

Output:

 

 


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads