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
Install Aspose.Slides for Java. See Installation .
Add the library as a reference in your project.
Create an instance of the Presentation class.
Load the PPT presentation you want to edit.
Add a new line of text.
Save the changed PowerPoint file.