Java Program to Create a Blank PPT Document Last Updated : 04 Jul, 2021 Summarize Comments Improve Suggest changes Share Like Article Like 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: Comment More infoAdvertise with us Next Article Java Program to Create blank Excel Sheet S shivamraj74 Follow Improve Article Tags : Java Technical Scripter Java Programs Technical Scripter 2020 Practice Tags : Java Similar Reads Java Program to Create a Word Document A Word file is supposed to be created without Word with the help of Java application protocol interfaces. Concepts Involved: Apache POI and Maven Apache POI Is an API provided by Apache foundation which is a collection of different java libraries. This facility gives the library to read, write, and 5 min read Java Program to Create blank Excel Sheet ApachePOI stands for poor obfuscation Implementation which is a Java API for reading and writing Microsoft documents. It contains classes and interfaces namely Wordbook, Sheet, Row, and Cell. Apache POI can be used to access 'xlsx' extension files and as well as 'xlsx' extension files Concept: Apach 3 min read Java Program to Extract a Image From a PDF Program to extract an image from a PDF using Java. The external jar file is required to import in the program. Below is the implementation for the same. Algorithm: Extracting image using the APACHE PDF Box module.Load the existing PDF document using file io.Creating an object of PDFRenderer class.Re 2 min read Java Program to Extract Content from a PDF Java class< file using the Apache Tika< library is used. Â For document type detection and content extraction from various file formats, it uses various document parsers and document type detection techniques to detect and extract data. It provides a single generic API for parsing different fil 3 min read Java Program to Write a Paragraph in a Word Document Java provides us various packages in-built into the environment, which facilitate the ease of reading, writing, and modifying the documents. The package org.apache.poi.xwpf.usermodel provides us the various features of formatting and appending the content in word documents. There are various classes 3 min read Java Apache POI Programs - Basic to Advanced This Java Apache POI program guide provides a variety of programs on Java POI, that are frequently asked in the technical round in various Software Engineering/core JAVA Developer Interviews. Additionally, All practice programs come with a detailed description, Java code, and output. Apache POI is a 3 min read Like