Voeg notities toe aan PowerPoint-dia's met Java REST API

Deze gids bevat informatie over hoe u notities toevoegt aan PowerPoint dia’s met Java REST API. U leert hoe u automatisch sprekernotities toevoegt aan PowerPoint met Java RESTful Service met behulp van een Java-gebaseerde Cloud SDK. Een volledige voorbeeldcode is ook onderdeel van dit artikel waarin wordt gedemonstreerd hoe u een presentatie uploadt, gewenste bewerkingen uitvoert en de bijgewerkte presentatie downloadt.

Voorwaarde

Stappen om notities toe te voegen aan PowerPoint met Java Low Code API

  1. Maak het SlidesApi-object met ID en geheim voor het toevoegen van sprekersnotities
  2. Upload de presentatie naar de cloudopslag om notities in te voegen
  3. Maak het NotesSlide-object en stel de tekst voor de notities in
  4. Roep de CreateNotesSlide()-methode aan om notities in te voegen
  5. Download het uitvoerbestand en sla het op de schijf op

Deze stappen vatten samen hoe u sprekersnotities toevoegt in PowerPoint met Java RESTful Service. Maak het SlidesApi-object door de vereiste parameters op te geven, upload de bronpresentatie en maak het NotesSlide-object met notitietekst. Roep ten slotte de CreateNotesSlide()-methode aan om notities in te voegen en de bijgewerkte presentatie te downloaden.

Code om presentatienotities toe te voegen aan PowerPoint met Java REST-interface

import com.aspose.slides.ApiException;
import com.aspose.slides.api.SlidesApi;
import com.aspose.slides.model.NotesSlide;
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.StandardCopyOption;
public class Example_AddNotesInPresentation {
protected static SlidesApi presentationApi;
public Example_AddNotesInPresentation() {
if (presentationApi == null) {
presentationApi = new SlidesApi("appSid", "appKey");
}
}
public void addSlideNotes() throws ApiException, IOException {
String localPath = "/home/downloads/";
String fileName = "Sample.pptx";
String storageFolderName = "TempTests";
presentationApi.uploadFile(storageFolderName+"/"+fileName, readFileToByteArray(localPath + fileName),null);
NotesSlide notes = new NotesSlide ();
notes.setText("Here are the notes for the speaker");
// Add notes on the. third slide
NotesSlide currentNotesSlide = presentationApi.createNotesSlide(fileName, 3, notes, null, storageFolderName, null);
File presentationFile = presentationApi.downloadFile(storageFolderName+"/"+fileName, null, null);
// Copy the downloaded presentation with new comments to the local directory
copyFile(presentationFile, new File(localPath, fileName));
System.out.println("Presentation slide comment 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);
}
}

Deze code laat zien hoe u notities in PowerPoint kunt invoegen met een Java-gebaseerde API. U kunt meerdere presentaties uploaden naar de cloudopslag en de doelpresentatienaam opgeven waar notities moeten worden toegevoegd terwijl u de CreateNotesSlide-methode aanroept. Andere parameters zijn het dianummer en de verwijzing naar het NotesSlide-object dat voor de presentatie is gemaakt.

Dit artikel heeft ons begeleid bij het werken met de presentatienotities. Om animatie toe te voegen aan een PowerPoint-dia, raadpleeg het artikel op Animeer PowerPoint-dia’s met Java REST API.

 Nederlands