按照本文使用 Java REST API 在 PowerPoint 中添加新幻灯片。您将了解如何使用基于 Java 的 API 在云存储中使用基于 Java 的 SDK 添加 PowerPoint 幻灯片。它将指导您在现有演示文稿中所需的索引处插入幻灯片。
先决条件
下载 Aspose.Slides Cloud SDK for Java for inserting slides
使用上述 SDK 设置 Java 项目以添加幻灯片
使用 Java REST API 添加幻灯片的步骤
- 通过设置添加幻灯片的用户 ID 和密码来创建 SlidesApi 对象
- 将目标演示文稿上传到云存储以插入幻灯片
- 通过提供上传的演示文稿名称和目标幻灯片索引来调用 CreateSlide() 方法
- 添加新的空幻灯片后显示所有幻灯片的 URL
- 下载并保存带有附加幻灯片的输出演示文稿
这些步骤解释了如何使用 Java RESTful 服务向 PowerPoint 添加幻灯片。使用所需信息创建 SlidesApi 对象,将源演示文稿上传到云存储,然后使用上传的文件名和目标幻灯片索引调用 CreateSlide() 方法。
使用基于 Java 的 API 在 PowerPoint 中添加幻灯片的代码
import com.aspose.slides.ApiException; | |
import com.aspose.slides.api.SlidesApi; | |
import com.aspose.slides.model.ResourceUri; | |
import com.aspose.slides.model.Slides; | |
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_AddPresentationSlides { | |
protected static SlidesApi presentationApi; | |
public Example_AddPresentationSlides() { | |
if (presentationApi == null) { | |
presentationApi = new SlidesApi("appSid", "appKey"); | |
} | |
} | |
public void addSlide() throws ApiException, IOException { | |
String localPath = "/home/downloads/"; | |
String fileName = "Sample.pptx"; | |
String storageFolderName = "TempTests"; | |
presentationApi.uploadFile(storageFolderName+"/"+fileName, readFileToByteArray(localPath + fileName),null); | |
// Add a presentation slide | |
Slides response = presentationApi.createSlide(fileName, null,1, null, storageFolderName, null); | |
for (ResourceUri slide : response.getSlideList()) | |
{ | |
System.out.println(slide.getHref()); | |
} | |
File presentationFile = presentationApi.downloadFile(storageFolderName+"/"+fileName, null, null); | |
// Copy the downloaded presentation with new slide added to the local directory | |
copyFile(presentationFile, new File(localPath, fileName)); | |
System.out.println("Presentation slide deleted 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 Low Code API 在 PowerPoint 上添加幻灯片。您可以使用新幻灯片的布局类型、索引或布局幻灯片名称来设置布局别名。如果上传的演示文稿受密码保护,请在调用 CreateSlide 方法时提供密码。
本文教了我们插入空白幻灯片的过程。有关删除幻灯片,请参阅 使用 Java REST API 删除 PowerPoint 幻灯片 上的文章。