คู่มือนี้มีข้อมูลเกี่ยวกับวิธีเพิ่มหมายเหตุลงในสไลด์ PowerPoint ด้วย Java REST API คุณจะได้เรียนรู้วิธีเพิ่มหมายเหตุของผู้บรรยายลงใน PowerPoint โดยอัตโนมัติด้วย Java RESTful Service โดยใช้ Cloud SDK ที่ใช้ Java นอกจากนี้ บทความนี้ยังแสดงวิธีอัปโหลดงานนำเสนอ ดำเนินการตามที่ต้องการ และดาวน์โหลดงานนำเสนอที่อัปเดต โดยมีโค้ดตัวอย่างฉบับสมบูรณ์
ข้อกำหนดเบื้องต้น
ดาวน์โหลด Aspose.Slides Cloud SDK for Java for inserting notes in the slides
ตั้งค่าโปรเจ็กต์ Java ด้วย SDK ข้างต้นเพื่อเพิ่มบันทึกของผู้บรรยายในสไลด์
ขั้นตอนการเพิ่มบันทึกบน PowerPoint ด้วย Java Low Code API
- สร้างอ็อบเจ็กต์ SlidesApi ที่มี ID และความลับสำหรับการเพิ่มบันทึกของผู้บรรยาย
- อัพโหลดการนำเสนอไปยังที่เก็บข้อมูลบนคลาวด์เพื่อแทรกบันทึก
- สร้างวัตถุ NotesSlide และตั้งค่าข้อความสำหรับบันทึกย่อ
- เรียกใช้เมธอด CreateNotesSlide() เพื่อแทรกหมายเหตุ
- ดาวน์โหลดไฟล์เอาท์พุตและบันทึกลงในดิสก์
ขั้นตอนเหล่านี้สรุปวิธีเพิ่มบันทึกย่อของผู้บรรยายใน PowerPoint ด้วย Java RESTful Service สร้างอ็อบเจ็กต์ SlidesApi โดยระบุพารามิเตอร์ที่จำเป็น อัปโหลดงานนำเสนอต้นฉบับ และสร้างอ็อบเจ็กต์ NotesSlide พร้อมข้อความบันทึกย่อ สุดท้าย เรียกใช้เมธอด CreateNotesSlide() เพื่อแทรกบันทึกย่อและดาวน์โหลดงานนำเสนอที่อัปเดต
รหัสสำหรับเพิ่มบันทึกการนำเสนอลงใน PowerPoint ด้วยอินเทอร์เฟซ Java REST
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); | |
} | |
} |
โค้ดนี้สาธิตวิธีแทรกโน้ตใน PowerPoint โดยใช้ API ที่ใช้ Java คุณสามารถอัปโหลดงานนำเสนอหลายรายการไปยังที่เก็บข้อมูลบนคลาวด์และระบุชื่องานนำเสนอเป้าหมายที่จะเพิ่มโน้ตขณะเรียกใช้เมธอด CreateNotesSlide พารามิเตอร์อื่นๆ ได้แก่ หมายเลขสไลด์และการอ้างอิงถึงอ็อบเจ็กต์ NotesSlide ที่สร้างขึ้นสำหรับงานนำเสนอ
บทความนี้ช่วยแนะนำเราในการทำงานกับบันทึกการนำเสนอ หากต้องการเพิ่มแอนิเมชั่นให้กับสไลด์ PowerPoint โปรดดูบทความที่ สร้างภาพเคลื่อนไหวสไลด์ PowerPoint ด้วย Java REST API