This guide provides assistance on how to add sections in PowerPoint with Java REST API. You will learn to automatically add/update/delete a section in PowerPoint with Java RESTful Service using a Java-based Cloud SDK. A list of steps is shared in it that guides you to write the application and add sections at specific positions in the presentation.
Prerequisite
- Create an account API credentials
- Download Aspose.Slides Cloud SDK for Java for inserting slide sections
- Setup Java project with the above SDK for working with sections
Steps to Add Slide Sections with Java REST API
- Create the SlidesApi class object for working with sections using the Client ID and secret
- Upload the source PowerPoint file with a few slides for adding sections to it
- Instantiate the Sections class object and create a new list of Section objects for it
- Create and add a new Section object by setting the first slide index and section name
- Add as many sections in the SectionList as required and call the SetSections() to add the list of sections
- Download the updated PowerPoint file
These steps explain how to group slides in PowerPoint with Java REST API. Use the Sections collection for adding new sections and add desired sections in the list by setting the first slide index in each section and its name. Finally, call the SetSections() method to create the sections and download the updated file from the cloud if required or perform further operations if any.
Code to Add a PowerPoint Section with Java REST Interface
import com.aspose.slides.ApiException; | |
import com.aspose.slides.api.SlidesApi; | |
import com.aspose.slides.model.*; | |
import java.io.File; | |
import java.io.IOException; | |
import java.nio.file.Files; | |
import java.nio.file.Path; | |
import java.nio.file.StandardCopyOption; | |
import java.util.ArrayList; | |
public class Example_AddSectionInPresentation { | |
protected static SlidesApi presentationApi; | |
public Example_AddSectionInPresentation() { | |
if (presentationApi == null) { | |
presentationApi = new SlidesApi("appSid", "appKey"); | |
} | |
} | |
public void addSection() throws ApiException, IOException { | |
String localPath = "/home/downloads/"; | |
String fileName = "Sections.pptx"; | |
String storageFolderName = "TempTests"; | |
presentationApi.uploadFile(storageFolderName+"/"+fileName, readFileToByteArray(localPath + fileName),null); | |
Sections sections = new Sections(); | |
sections.setSectionList(new ArrayList<Section>()); | |
Section section1 = new Section(); | |
section1.setFirstSlideIndex(2); | |
section1.setName("Accounts"); | |
sections.addSectionListItem(section1); | |
//Adding section to slide | |
presentationApi.setSections(fileName, sections,null, storageFolderName, null);// Add new section | |
File presentationFile = presentationApi.downloadFile(storageFolderName+"/"+fileName, null, null); | |
// Copy the downloaded presentation with new sections to the local directory | |
copyFile(presentationFile, new File(localPath, fileName)); | |
System.out.println("Presentation slide section is set and copied to: " + localPath + fileName); | |
} | |
public static byte[] readFileToByteArray(String filePath) throws IOException { | |
Path path = new File(filePath).toPath(); | |
return Files.readAllBytes(path); | |
} | |
private void copyFile(File sourceFile, File targetFile) throws IOException { | |
if (sourceFile == null || !sourceFile.exists()) { | |
throw new IOException("Source file does not exist: " + sourceFile); | |
} | |
// Ensure the target directory exists | |
Path targetPath = targetFile.toPath(); | |
Files.createDirectories(targetPath.getParent()); | |
// Copy the file | |
Files.copy(sourceFile.toPath(), targetPath, StandardCopyOption.REPLACE_EXISTING); | |
} | |
} |
This code demonstrates how to work with PowerPoint slide sections with Java RESTful Service. You may update the default section starting from the first slide in the presentation by changing its name and calling the UpdateSection method. To access all the sections in a presentation, call the GetSections() method, delete a section by calling the DeleteSection(), and move a section by calling the MoveSection() method.
This article has introduced us to sections in a presentation. If you want to work with footers in a presentation, refer to the article on edit header and footer in PowerPoint with Java API.