Bu kılavuz, Java REST API ile PowerPoint slaytlarına not ekleme hakkında bilgi içerir. Java tabanlı bir Cloud SDK kullanarak Java RESTful Service ile PowerPoint’e konuşmacı notlarını otomatik olarak eklemeyi öğreneceksiniz. Bu makalede ayrıca bir sunumun nasıl yükleneceğini, istenen işlemlerin nasıl gerçekleştirileceğini ve güncellenmiş sunumun nasıl indirileceğini gösteren eksiksiz bir örnek kod da yer almaktadır.
Önkoşul
İndirmek Aspose.Slides Cloud SDK for Java for inserting notes in the slides
Yukarıdaki SDK ile bir slayda konuşmacı notları eklemek için Java projesini kurun
Java Low Code API ile PowerPoint’e Not Ekleme Adımları
- Konuşmacı notları eklemek için ID ve secret ile SlidesApi nesnesini oluşturun
- Not eklemek için sunumu Bulut depolama alanına yükleyin
- NotesSlide nesnesini oluşturun ve notlar için metni ayarlayın
- Not eklemek için CreateNotesSlide() yöntemini çağırın
- Çıktı dosyasını indirin ve diske kaydedin
Bu adımlar, Java RESTful Service ile PowerPoint’e konuşmacı notlarının nasıl ekleneceğini özetler. Gerekli parametreleri sağlayarak SlidesApi nesnesini oluşturun, kaynak sunuyu yükleyin ve not metniyle NotesSlide nesnesini oluşturun. Son olarak, notları eklemek ve güncellenmiş sunumu indirmek için CreateNotesSlide() yöntemini çağırın.
Java REST Arayüzü ile PowerPoint’e Sunum Notları Ekleme Kodu
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); | |
} | |
} |
Bu kod, Java tabanlı API ile PowerPoint’e notların nasıl ekleneceğini gösterir. Birden fazla sunumu Bulut depolama alanına yükleyebilir ve CreateNotesSlide yöntemini çağırırken notların ekleneceği hedef sunum adını sağlayabilirsiniz. Diğer parametreler slayt numarası ve sunum için oluşturulan NotesSlide nesnesine referanstır.
Bu makale, sunum notlarıyla çalışmamızda bize rehberlik etti. Bir PowerPoint slaydına animasyon eklemek için PowerPoint slaytlarını Java REST API ile canlandırın makalesine bakın.