Ավելացնել բաժիններ PowerPoint-ում Java REST API-ով

Այս ուղեցույցը օգնում է, թե ինչպես ավելացնել բաժիններ PowerPoint-ում Java REST API-ով: Դուք կսովորեք ավտոմատ կերպով ավելացնել/թարմացնել/ջնջել ** բաժինը PowerPoint-ում Java RESTful Service**-ի միջոցով Java-ի վրա հիմնված Cloud SDK-ի միջոցով: Դրանում տարածված է քայլերի ցանկը, որը ձեզ ուղղորդում է գրել դիմումը և ավելացնել բաժիններ ներկայացման կոնկրետ դիրքերում:

Նախապայման

Java REST API-ով սլայդների բաժիններ ավելացնելու քայլեր

  1. Ստեղծեք SlidesApi դասի օբյեկտը բաժինների հետ աշխատելու համար՝ օգտագործելով Client ID-ն և գաղտնիքը
  2. Վերբեռնեք աղբյուրի PowerPoint ֆայլը մի քանի սլայդներով՝ դրան բաժիններ ավելացնելու համար
  3. Ստեղծեք Sections դասի օբյեկտը և դրա համար ստեղծեք Section օբյեկտների նոր ցուցակ
  4. Ստեղծեք և ավելացրեք նոր Բաժնի օբյեկտ՝ սահմանելով առաջին սլայդի ինդեքսը և բաժնի անվանումը
  5. Բաժինների ցանկում ավելացրեք այնքան բաժիններ, որքան անհրաժեշտ է և զանգահարեք SetSections() բաժինների ցանկն ավելացնելու համար:
  6. Ներբեռնեք թարմացված PowerPoint ֆայլը

Այս քայլերը բացատրում են, թե ինչպես կարելի է խմբավորել սլայդները PowerPoint-ում Java REST API-ով: Օգտագործեք Բաժիններ հավաքածուն նոր բաժիններ ավելացնելու համար և ցանկում ավելացրեք ցանկալի բաժիններ՝ յուրաքանչյուր բաժնում սահմանելով սլայդի առաջին ինդեքսը և դրա անունը: Ի վերջո, զանգահարեք SetSections() մեթոդը՝ բաժինները ստեղծելու և անհրաժեշտության դեպքում թարմացված ֆայլը ամպից ներբեռնելու կամ հետագա գործողություններ կատարելու համար, եթե այդպիսիք կան:

Կոդ՝ Java REST ինտերֆեյսով PowerPoint բաժին ավելացնելու համար

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 Service-ով: Դուք կարող եք թարմացնել կանխադրված բաժինը՝ սկսած ներկայացման առաջին սլայդից՝ փոխելով դրա անունը և զանգահարելով UpdateSection մեթոդը: Ներկայացման բոլոր բաժինները մուտք գործելու համար զանգահարեք GetSections() մեթոդը, ջնջեք բաժինը կանչելով DeleteSection() և տեղափոխեք բաժինը կանչելով MoveSection() մեթոդը:

Այս հոդվածը մեզ ներկայացրեց ներկայացման բաժինները: Եթե ցանկանում եք աշխատել էջատակների հետ ներկայացման մեջ, տես խմբագրել վերնագիրն ու ստորագիրը PowerPoint-ում Java API-ով-ի հոդվածը:

 Հայերեն