Edit PPT in Java

High-speed and cross-platform Java library for editing PPT using Java code

Edit PPT using Aspose.Slides

Aspose.Slides for Java is a powerful Java library used to manipulate and edit presentations. You can edit a PPT presentation by adding a new line of text to it.

Edit PPT in Java

Using Aspose.Slides for Java , you can add a new line of text to a PPT document with just a few lines of code.

Java code for editing PPT


Presentation pres = new Presentation("pres.ppt");
try {
    ISlide slide = pres.getSlides().get_Item(0);
    IAutoShape shape = slide.getShapes().addAutoShape(ShapeType.Rectangle, 10, 10, 100, 50);
    shape.getTextFrame().setText("New text");

    pres.save("pres.ppt", SaveFormat.Ppt);
} finally {
    if (pres != null) pres.dispose();
}

How to edit PPT in Java

  1. Install Aspose.Slides for Java. See Installation .

  2. Add the library as a reference in your project.

  3. Create an instance of the Presentation class.

  4. Load the PPT presentation you want to edit.

  5. Add a new line of text.

  6. Save the changed PowerPoint file.

Edit other files

You can also edit files in other formats