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 javaimport 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("Lazyroar.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:
Â
Â

