รวมการนำเสนอด้วย Java REST API

ปฏิบัติตามบทความนี้เพื่อ ผสานการนำเสนอด้วย Java REST API บทความนี้จะแนะนำคุณในการพัฒนา การผสานการนำเสนอ PowerPoint ด้วย Java Low Code API โดยใช้ Cloud SDK ที่ใช้ Java นอกจากนี้ คุณยังจะได้เรียนรู้วิธีแสดงคุณสมบัติของไฟล์เอาต์พุต PPT/PPTX และดาวน์โหลดไฟล์เอาต์พุตการนำเสนอจากที่จัดเก็บข้อมูลบนคลาวด์หากจำเป็น

ข้อกำหนดเบื้องต้น

ขั้นตอนในการรวมสไลด์ PowerPoint เข้ากับ Java RESTful Service

  1. สร้างอ็อบเจ็กต์ของคลาส SlidesApi โดยกำหนด ID ไคลเอนต์และความลับในการผสานการนำเสนอ
  2. อัปโหลดจุดหมายปลายทางและอินพุตการนำเสนอไปยังที่เก็บข้อมูลบนคลาวด์โดยตั้งชื่อเฉพาะ
  3. สร้างวัตถุ PresentationsMergeRequest และกำหนดเส้นทางของงานนำเสนออินพุตสำหรับการผสาน
  4. เรียกใช้เมธอด Merge โดยระบุชื่อการนำเสนอปลายทางและวัตถุคำขอ
  5. แสดงคุณสมบัติการนำเสนอผลลัพธ์ที่ส่งคืนโดยการเรียก API Merge()
  6. ดาวน์โหลดและบันทึกการนำเสนอผลลัพธ์หลังจากรวมการนำเสนออินพุต

ขั้นตอนเหล่านี้อธิบายวิธีการ รวม PPT เข้ากับ API ที่ใช้ Java ขั้นตอนหลักคือการอัปโหลดปลายทางและการนำเสนออินพุตทั้งหมดไปยังที่เก็บข้อมูลบนคลาวด์ และตั้งค่ารายการเส้นทางคลาวด์ของการนำเสนอในอ็อบเจกต์คำขอ สุดท้าย ให้เรียกใช้เมธอด Merge() โดยระบุการนำเสนอปลายทางและอ็อบเจกต์คำขอ และดาวน์โหลดการนำเสนอปลายทางเอาต์พุตไปยังที่เก็บข้อมูลภายในหากต้องการ

โค้ดสำหรับผสาน PowerPoint ด้วย Java Low Code API

import com.aspose.slides.ApiException;
import com.aspose.slides.api.SlidesApi;
import com.aspose.slides.model.ExportFormat;
import com.aspose.slides.model.PresentationsMergeRequest;
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.Arrays;
public class Example_MergePresentation {
protected static SlidesApi presentationApi;
public Example_MergePresentation() {
if (presentationApi == null) {
presentationApi = new SlidesApi("appSid", "appKey");
}
}
public void mergePresentation() throws ApiException, IOException {
String localPath = "/home/downloads/";
String fileName = "Merge.pptx";
String inputFile1 = "1-NewSales.pptx";
String inputFile2 = "2-NewSales.pptx";
String storageFolderName = "TempTests";
presentationApi.uploadFile(storageFolderName+"/"+inputFile1, readFileToByteArray(localPath + inputFile1),null);
presentationApi.uploadFile(storageFolderName+"/"+inputFile2, readFileToByteArray(localPath + inputFile2),null);
PresentationsMergeRequest request = new PresentationsMergeRequest();
request.setPresentationPaths(Arrays.asList(inputFile1, inputFile2));
// Merge the presentations.
presentationApi.merge(fileName, request,null, storageFolderName,null);
// Download the created presentation
File createdPresentation = presentationApi.downloadPresentation(fileName, ExportFormat.PPTX, null, null,
storageFolderName,null,null,null);
// Copy the downloaded presentation to the local directory
copyFile(createdPresentation, new File(localPath, fileName));
System.out.println("Presentation Merged 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);
}
}

โค้ดนี้สาธิตการพัฒนา การรวม PPTX กับ Java RESTful Service โปรดทราบว่าคุณสามารถเปลี่ยนลำดับการรวมได้โดยตั้งค่าลำดับของชื่อไฟล์ในอ็อบเจกต์คำขอ ในขณะที่เพิ่มไฟล์อินพุตในอ็อบเจกต์คำขอ คุณสามารถระบุรหัสผ่านสำหรับการนำเสนอทั้งหมดหรือที่เลือกตามความต้องการของคุณได้

บทความนี้สอนเราเกี่ยวกับการผสมผสานการนำเสนอโดยใช้ API บนเว็บ หากคุณต้องการสร้างการนำเสนอ โปรดดูบทความที่ สร้างการนำเสนอด้วย Java REST API

 ไทย