使用 Java REST API 向 PowerPoint 添加评论

按照本文操作,使用 Java REST API 向 PowerPoint 添加评论。您将学习如何使用基于 Java 的 Cloud SDK 自动添加使用 Java Low Code API 的 PowerPoint 评论。它将分享在将评论添加到幻灯片之前设置评论的各种参数的详细信息。

先决条件

使用基于 Java 的 API 对 PowerPoint 演示文稿进行评论的步骤

  1. 通过设置添加评论的客户端 ID 和密钥来创建 SlidesApi 对象
  2. 设置输入演示文稿文件名和目标幻灯片索引
  3. 定义幻灯片评论和相关子评论集合
  4. 使用 CreateComment 方法向幻灯片添加评论
  5. 获取评论数以确认添加评论
  6. 下载包含新评论的更新后的演示文稿文件

这些步骤描述了如何使用 Java RESTful 服务在 PowerPoint 中添加注释。设置输入演示文稿文件名和幻灯片索引,创建幻灯片注释和子注释,然后通过设置输入文件名、目标索引和注释来调用 CreateComment() 方法插入注释。此调用上传演示文稿,在云中对其进行修改,并返回注释集合。

使用 Java REST API 添加 PowerPoint 演示文稿注释的代码

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);
}
}

此代码演示了如何使用 Java RESTful 服务向 PowerPoint 演示文稿添加注释。您可以通过添加注释列表并将其设置为属性 ChildComments,在主注释下添加多个子注释。您可以通过使用 SlideComment 方法设置其他公开的属性来自定义注释。

本文教我们如何在幻灯片中添加注释。您可以按照文章 使用 Java REST API 在 PowerPoint 中使用图片作为背景 为演示文稿插入图像背景。

 简体中文