ปฏิบัติตามคำแนะนำนี้เกี่ยวกับวิธี เพิ่มไฮเปอร์ลิงก์ไปยัง PowerPoint ด้วย Java REST API คุณจะได้เรียนรู้การ แทรกไฮเปอร์ลิงก์ใน PowerPoint ด้วย Java RESTful Service โดยอัตโนมัติ โดยใช้ Cloud SDK ที่ใช้ Java ซึ่งรองรับฟีเจอร์ขั้นสูงทั้งหมดสำหรับการทำงานกับงานนำเสนอ มันจะช่วยคุณในการเลือกสไลด์และรูปร่างเฉพาะสำหรับการเพิ่มไฮเปอร์ลิงก์ที่กำหนดเอง
ข้อกำหนดเบื้องต้น
ดาวน์โหลด Aspose.Slides Cloud SDK for Java for inserting hyperlinks
ตั้งค่าโปรเจ็กต์ Java ด้วย SDK ข้างต้นเพื่อเพิ่มลิงก์ไปยังรูปร่าง
ขั้นตอนในการเพิ่มลิงก์ไปยัง PowerPoint ด้วย API ที่ใช้ Java
- สร้าง SlidesApi ด้วยคีย์ API และรหัสลับสำหรับการตรวจสอบสิทธิ์
- อ่านไฟล์อินพุตลงในสตรีมหน่วยความจำแล้วอัปโหลด
- ตั้งค่าดัชนีของสไลด์และรูปร่างสำหรับการเพิ่มไฮเปอร์ลิงก์ (ดัชนีแบบ 1)
- สร้างวัตถุรูปร่างด้วยไฮเปอร์ลิงก์
- Update รูปร่างบนสไลด์ที่ระบุพร้อมไฮเปอร์ลิงก์
- พิมพ์ URL ของไฮเปอร์ลิงก์ที่อัปเดตไปยังคอนโซลเพื่อตรวจสอบ
- ดาวน์โหลดงานนำเสนอที่อัปเดตจากระบบคลาวด์เป็นสตรีมและบันทึกลงในดิสก์
ขั้นตอนเหล่านี้อธิบาย วิธีเพิ่มไฮเปอร์ลิงก์ใน PowerPoint ด้วย Java REST API คุณสามารถสร้างรูปร่างและเพิ่มไฮเปอร์ลิงก์โดยกำหนดประเภทการดำเนินการและ URL ภายนอก สุดท้าย อัปเดตรูปร่างเป้าหมายในสไลด์ที่ต้องการโดยใช้รูปร่างที่สร้างขึ้นใหม่และบันทึกเอาต์พุตลงในดิสก์หากจำเป็น
รหัสสำหรับแทรกลิงค์ใน PowerPoint ด้วย Java Low Code API
import com.aspose.slides.ApiException; | |
import com.aspose.slides.api.SlidesApi; | |
import com.aspose.slides.model.*; | |
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_AddHyperlinkInPresentation { | |
protected static SlidesApi presentationApi; | |
public Example_AddHyperlinkInPresentation() { | |
if (presentationApi == null) { | |
presentationApi = new SlidesApi("appSid", "appKey"); | |
} | |
} | |
public void addHyperlinkInSlide() throws ApiException, IOException { | |
String localPath = "/home/downloads/"; | |
String fileName = "PresentationWithHyperlink.pptx"; | |
String storageFolderName = "TempTests"; | |
// Index of the slide and shape where the target shape is located (1-based index). | |
int slideIndex = 2, shapeIndex = 2; | |
Shape shape = new Shape(); // Create a shape object with a hyperlink | |
Hyperlink hyperlink = new Hyperlink(); | |
hyperlink.setActionType(Hyperlink.ActionTypeEnum.HYPERLINK);// Set the action type as a hyperlink. | |
hyperlink.setExternalUrl("https://docs.aspose.cloud/slides"); // The URL for the hyperlink. | |
shape.setHyperlinkClick(hyperlink); | |
// Update the shape on the specified slide with the hyperlink | |
ShapeBase updatedShpWithHyperlink = presentationApi.updateShape(fileName, slideIndex, shapeIndex, shape, | |
null, storageFolderName, null, null); | |
// Print the updated hyperlink's URL to the console for verification. | |
System.out.println(updatedShpWithHyperlink.getHyperlinkClick().getExternalUrl()); | |
File presentationFile = presentationApi.downloadFile(storageFolderName+"/"+fileName, null, null); | |
// Copy the downloaded presentation with new image shape to the local directory | |
copyFile(presentationFile, new File(localPath, fileName)); | |
System.out.println("Presentation slide with image shape is 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 ด้วยอินเทอร์เฟซ Java REST คุณสามารถตั้งค่าคุณสมบัติต่างๆ ของไฮเปอร์ลิงก์ได้ เช่น ธงเพื่อเปิด/ปิดใช้งานไฮเปอร์ลิงก์ คำแนะนำเครื่องมือ ประวัติ การไฮไลต์การคลิก และหยุดเสียงเมื่อคลิก โปรดทราบว่าคุณสมบัติทั้งหมดเหล่านี้พร้อมใช้งานโดยการวางเมาส์เหนือไฮเปอร์ลิงก์แทนที่จะคลิก
บทความนี้ได้สอนเราให้สร้าง ไฮเปอร์ลิงก์ใน PowerPoint ด้วย Java Low Code API หากต้องการเพิ่ม SmartArt ในสไลด์ โปรดดูบทความเกี่ยวกับ เพิ่ม SmartArt ให้กับ PowerPoint ด้วย Java REST API