Java REST API ile PowerPoint’e yorum eklemek için bu makaleyi takip edin. Java tabanlı Cloud SDK’yı kullanarak Java Low Code API ile PowerPoint yorumlarını otomatik olarak eklemeyi öğreneceksiniz. Bir yorumu slayda eklemeden önce çeşitli parametreleri ayarlamak için ayrıntıları paylaşacaktır.
Önkoşul
İndirmek Aspose.Slides Cloud SDK for Java for inserting comments in the slides
Yukarıdaki SDK ile bir slayda yorum eklemek için Java projesini kurun
Java tabanlı API ile PowerPoint Sunumunda Yorum Yapma Adımları
- Yorum eklemek için istemci kimliğini ve sırrını ayarlayarak SlidesApi nesnesini oluşturun
- Giriş sunumu dosya adını ve hedef slayt dizinini ayarlayın
- Slayt yorumunu ve ilgili alt yorum koleksiyonunu tanımlayın
- CreateComment yöntemini kullanarak slayda yorumlar ekleyin
- Yorumların eklendiğini onaylamak için yorum sayısını getirin
- İçinde yeni yorumlar bulunan güncellenmiş sunum dosyasını indirin
Bu adımlar, Java RESTful Service ile PowerPoint’e yorumların nasıl ekleneceğini açıklar. Giriş sunumu dosya adını ve slayt dizinini ayarlayın, slayt yorumunu ve alt yorumları oluşturun ve yorumları eklemek için giriş dosyası adını, hedef dizini ve yorumları ayarlayarak CreateComment() yöntemini çağırın. Bu çağrı sunumu yükler, Bulutta değiştirir ve yorum koleksiyonunu döndürür.
Java REST API ile PowerPoint Sunum Yorumları Ekleme Kodu
import com.aspose.slides.ApiException; | |
import com.aspose.slides.api.SlidesApi; | |
import com.aspose.slides.model.SlideComment; | |
import com.aspose.slides.model.SlideCommentBase; | |
import com.aspose.slides.model.SlideComments; | |
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_AddCommentsInPresentation { | |
protected static SlidesApi presentationApi; | |
public Example_AddCommentsInPresentation() { | |
if (presentationApi == null) { | |
presentationApi = new SlidesApi("appSid", "appKey"); | |
} | |
} | |
public void addComments() throws ApiException, IOException { | |
String localPath = "/home/downloads/"; | |
String fileName = "Sample.pptx"; | |
String storageFolderName = "TempTests"; | |
presentationApi.uploadFile(storageFolderName+"/"+fileName, readFileToByteArray(localPath + fileName),null); | |
SlideComment comment = new SlideComment (); | |
comment.setText("Master comment here."); | |
comment.setAuthor("Mr. John"); | |
SlideComment subComment = new SlideComment (); | |
subComment.setText("Here is the sub-comment."); | |
subComment.setAuthor("Mr. Paul"); | |
ArrayList<SlideCommentBase> subComments = new ArrayList<SlideCommentBase>(); | |
subComments.add(subComment); | |
comment.childComments(subComments); | |
// Add slide comments | |
SlideComments comments = presentationApi.createComment(fileName, 2, comment, null, 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 RESTful Service ile PowerPoint sunumuna yorumların nasıl ekleneceğini göstermiştir. Ana yorumun altına, yorumların bir listesini ekleyerek ve bunu ChildComments özelliğine ayarlayarak birden fazla alt yorum ekleyebilirsiniz. SlideComment yöntemini kullanarak diğer açık özellikleri ayarlayarak yorumları özelleştirebilirsiniz.
Bu makale bize bir slayta yorum eklemeyi öğretti. PowerPoint’te Java REST API ile arka plan olarak resim kullanma makalesini takip ederek bir sunuma resim arka planı ekleyebilirsiniz.