Kövesse ezt a cikket a PowerPoint dia törléséhez a Java REST API-val**. Megtanulja, hogyan távolíthat el diákat a PPT-ből Java Low Code API-val egy Java-alapú Cloud SDK használatával. A folyamat megismétlésével több diát törölhet a prezentációból.
Előfeltétel
Letöltés Aspose.Slides Cloud SDK for Java to remove a slide
Állítsa be a Java projektet a fenti SDK-val, hogy töröljön egy diát egy PPTX-ről online
A dia törlésének lépései a Java REST felülettel
- Hozzon létre egy SlidesApi osztályobjektumot a diák prezentációból való törléséhez
- A dia eltávolításához töltse fel a forrásprezentációt a felhőtárhelyre
- Hívja meg a DeleteSlide() metódust a szükséges paraméterek megadásával
- Jelenítse meg a fennmaradó dia URL-címeket az API válaszobjektumból
- Töltse le a frissített prezentációt a felhőtárhelyről, és mentse a lemezre
A fenti lépések elmagyarázzák, hogyan törölhető a PowerPoint diák Java alapú API-val. Hozza létre a SlidesApi osztályobjektumot felhasználói azonosítóval és titkossággal, töltse fel a prezentációt a felhőtárhelyre, és hívja meg a DeleteSlide() API-hívást a dia törléséhez. Jelenítse meg az API-válaszból származó fennmaradó diák URL-címeit, és mentse a frissített bemutatót a lemezre.
Kód a diák törléséhez a PowerPointban a Java RESTful szolgáltatással
import com.aspose.slides.ApiException; | |
import com.aspose.slides.api.SlidesApi; | |
import com.aspose.slides.model.ResourceUri; | |
import com.aspose.slides.model.Slides; | |
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_DeletePresentationSlides { | |
protected static SlidesApi presentationApi; | |
public Example_DeletePresentationSlides() { | |
if (presentationApi == null) { | |
presentationApi = new SlidesApi("appSid", "appKey"); | |
} | |
} | |
public void deleteSlide() throws ApiException, IOException { | |
String localPath = "/home/downloads/"; | |
String fileName = "Sample.pptx"; | |
String storageFolderName = "TempTests"; | |
presentationApi.uploadFile(storageFolderName+"/"+fileName, readFileToByteArray(localPath + fileName),null); | |
// Delete the target slide | |
Slides response = presentationApi.deleteSlide("Sample.pptx", 1, null, storageFolderName, null); | |
for (ResourceUri slide : response.getSlideList()) | |
{ | |
System.out.println(slide.getHref()); | |
} | |
File presentationFile = presentationApi.downloadFile(storageFolderName+"/"+fileName, null, null); | |
// Copy the downloaded presentation with deleted slide to the local directory | |
copyFile(presentationFile, new File(localPath, fileName)); | |
System.out.println("Presentation slide deleted 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); | |
} | |
} |
Ez a kód bemutatja, hogyan távolítsuk el a diákat a PPT-ből Java Low Code API-val. A DeleteSlide() metódus megköveteli a feltöltött prezentáció nevét és az 1-től kezdődő diaindexet, amelyet törölni szeretne. Az API-válasz tartalmazza a feltöltött prezentációban megmaradt diák listáját, amelyeket a Href tulajdonság segítségével jeleníthet meg.
Ez a cikk megtanított minket arra, hogy töröljünk egyes diákat a prezentációból. Ha fel szeretne osztani egy prezentáció diákját, olvassa el a(z) Diák felosztása Java REST API-val cikket.