اتبع هذه المقالة لإضافة تعليقات إلى PowerPoint باستخدام واجهة برمجة تطبيقات Java REST. ستتعلم كيفية إضافة تعليقات PowerPoint تلقائيًا باستخدام واجهة برمجة تطبيقات Java Low Code باستخدام مجموعة أدوات تطوير البرامج السحابية المستندة إلى Java. ستشارك التفاصيل لتعيين معلمات مختلفة لتعليق قبل إضافته إلى الشريحة.
متطلب أساسي
تحميل Aspose.Slides Cloud SDK for Java for inserting comments in the slides
قم بإعداد مشروع Java باستخدام SDK أعلاه لإضافة تعليق إلى الشريحة
خطوات التعليق على عرض تقديمي في PowerPoint باستخدام واجهة برمجة التطبيقات المستندة إلى Java
- قم بإنشاء كائن SlidesApi عن طريق تعيين معرف العميل والسر لإضافة التعليقات
- تعيين اسم ملف العرض التقديمي المدخل وفهرس الشريحة المستهدفة
- قم بتحديد تعليق الشريحة ومجموعة التعليقات الفرعية ذات الصلة
- أضف التعليقات إلى الشريحة باستخدام طريقة CreateComment
- احصل على عدد التعليقات لتأكيد إضافة التعليقات
- قم بتنزيل ملف العرض التقديمي المحدث مع التعليقات الجديدة فيه
تصف هذه الخطوات كيفية إضافة التعليقات في PowerPoint باستخدام خدمة Java RESTful. قم بتعيين اسم ملف العرض التقديمي المدخل وفهرس الشريحة، وإنشاء تعليق الشريحة والتعليقات الفرعية، واستدعاء طريقة CreateComment() لإدراج التعليقات عن طريق تعيين اسم ملف الإدخال والفهرس المستهدف والتعليقات. تعمل هذه المكالمة على تحميل العرض التقديمي وتعديله في السحابة وإرجاع مجموعة التعليقات.
كود لإضافة تعليقات على عرض PowerPoint باستخدام Java REST API
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); | |
} | |
} |
لقد أظهر هذا الكود كيفية إضافة تعليقات إلى عرض تقديمي في PowerPoint باستخدام Java RESTful Service. يمكنك إضافة تعليقات فرعية متعددة أسفل التعليق الرئيسي عن طريق إضافة قائمة من التعليقات وتعيينها على الخاصية ChildComments. يمكنك تخصيص التعليقات عن طريق تعيين خصائص أخرى مكشوفة باستخدام طريقة SlideComment.
لقد علمتنا هذه المقالة كيفية إضافة تعليقات إلى الشريحة. يمكنك إدراج صورة كخلفية للعرض التقديمي من خلال اتباع المقالة استخدام الصورة كخلفية في PowerPoint باستخدام Java REST API.