إضافة أقسام في PowerPoint باستخدام Java REST API

يقدم هذا الدليل المساعدة حول كيفية إضافة أقسام في PowerPoint باستخدام واجهة برمجة تطبيقات Java REST. ستتعلم كيفية إضافة/تحديث/حذف قسم في PowerPoint تلقائيًا باستخدام خدمة Java RESTful باستخدام مجموعة أدوات تطوير برمجيات سحابية تعتمد على Java. يتم مشاركة قائمة بالخطوات فيه والتي ترشدك إلى كتابة التطبيق وإضافة أقسام في مواضع محددة في العرض التقديمي.

متطلب أساسي

خطوات إضافة أقسام الشرائح باستخدام واجهة برمجة تطبيقات Java REST

  1. قم بإنشاء كائن فئة SlidesApi للعمل مع الأقسام باستخدام معرف العميل والسر
  2. قم بتحميل ملف PowerPoint المصدر مع بعض الشرائح لإضافة أقسام إليه
  3. قم بإنشاء كائن فئة Sections وإنشاء قائمة جديدة من كائنات Section له
  4. إنشاء وإضافة كائن قسم جديد عن طريق تعيين فهرس الشريحة الأولى واسم القسم
  5. أضف عددًا من الأقسام في SectionList حسب الحاجة واتصل بـ SetSections() لإضافة قائمة الأقسام
  6. تنزيل ملف PowerPoint المحدث

تشرح هذه الخطوات كيفية تجميع الشرائح في PowerPoint باستخدام واجهة برمجة تطبيقات Java REST. استخدم مجموعة الأقسام لإضافة أقسام جديدة وأضف الأقسام المطلوبة في القائمة عن طريق تعيين فهرس الشريحة الأولى في كل قسم واسمها. أخيرًا، اتصل بطريقة SetSections() لإنشاء الأقسام وتنزيل الملف المحدث من السحابة إذا لزم الأمر أو قم بإجراء عمليات أخرى إن وجدت.

كود إضافة قسم PowerPoint بواجهة Java REST

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;
import java.util.ArrayList;
public class Example_AddSectionInPresentation {
protected static SlidesApi presentationApi;
public Example_AddSectionInPresentation() {
if (presentationApi == null) {
presentationApi = new SlidesApi("appSid", "appKey");
}
}
public void addSection() throws ApiException, IOException {
String localPath = "/home/downloads/";
String fileName = "Sections.pptx";
String storageFolderName = "TempTests";
presentationApi.uploadFile(storageFolderName+"/"+fileName, readFileToByteArray(localPath + fileName),null);
Sections sections = new Sections();
sections.setSectionList(new ArrayList<Section>());
Section section1 = new Section();
section1.setFirstSlideIndex(2);
section1.setName("Accounts");
sections.addSectionListItem(section1);
//Adding section to slide
presentationApi.setSections(fileName, sections,null, storageFolderName, null);// Add new section
File presentationFile = presentationApi.downloadFile(storageFolderName+"/"+fileName, null, null);
// Copy the downloaded presentation with new sections to the local directory
copyFile(presentationFile, new File(localPath, fileName));
System.out.println("Presentation slide section 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. يمكنك تحديث القسم الافتراضي بدءًا من الشريحة الأولى في العرض التقديمي عن طريق تغيير اسمه واستدعاء طريقة UpdateSection. للوصول إلى جميع الأقسام في العرض التقديمي، اتصل بطريقة GetSections()، واحذف قسمًا عن طريق استدعاء طريقة DeleteSection()، وانقل قسمًا عن طريق استدعاء طريقة MoveSection().

لقد قدمت لنا هذه المقالة أقسامًا في العرض التقديمي. إذا كنت تريد العمل مع التذييلات في العرض التقديمي، راجع المقالة على تحرير الرأس والتذييل في PowerPoint باستخدام Java API.

 عربي