Folgen Sie diesem Artikel, um Folien mit Java REST API aufzuteilen. Sie lernen, PPTX mithilfe eines Java-basierten Cloud SDK automatisch mit einer Java-basierten API aufzuteilen. Es teilt alle Eigenschaften, die für die Anpassung des Konvertierungsprozesses erforderlich sind.
Voraussetzung
Herunterladen Aspose.Slides Cloud SDK for Java for splitting presentations
Richten Sie ein Java-Projekt mit dem obigen SDK ein, um PPTX online zu teilen
Schritte zum Aufteilen von PPT mit Java Low Code API
- Erstellen Sie ein Objekt der Klasse SlidesApi, indem Sie die Client-ID und das Geheimnis festlegen
- Laden Sie die Quellpräsentation in den Cloud-Speicher hoch, indem Sie einen eindeutigen Namen festlegen
- Rufen Sie die Methode Split() mit dem hochgeladenen Dateinamen, dem Ausgabebildformat, der Startfolie und der letzten Foliennummer auf.
- Analysieren Sie alle Folien im Antwortobjekt
- Laden Sie jedes Folienbild unter Verwendung des Bildnamens in der Href-Zeichenfolge herunter
- Speichern Sie das heruntergeladene Bild auf der Festplatte
Diese Schritte erklären, wie Sie ein PowerPoint-Splitter-Tool mit Java REST-Schnittstelle entwickeln. Erstellen Sie ein SlidesApi-Objekt, laden Sie die Quellpräsentationsdatei hoch und rufen Sie die Split()-Methode auf, indem Sie die erforderlichen Informationen angeben. Analysieren Sie die API-Antwort und speichern Sie alle für einzelne Folien erstellten Bilder auf der lokalen Festplatte.
Code für PowerPoint Splitter mit Java RESTful Service
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_SplitPresentationSlides { | |
protected static SlidesApi presentationApi; | |
public Example_SplitPresentationSlides() { | |
if (presentationApi == null) { | |
presentationApi = new SlidesApi("appSid", "appKey"); | |
} | |
} | |
public void SplitPresentation() throws ApiException, IOException { | |
String localPath = "/home/downloads/"; | |
String fileName = "TestPresentation.pptx"; | |
String storageFolderName = "TempTests"; | |
presentationApi.uploadFile(storageFolderName+"/"+fileName, readFileToByteArray(storageFolderName+localPath + fileName),null); | |
ExportOptions options = new ExportOptions(); | |
// Split the 2nd and 3rd slides and save them to PNG format. | |
SplitDocumentResult response = presentationApi.split(fileName, options, SlideExportFormat.PNG,720, 540,2, 3, | |
storageFolderName, null, storageFolderName, null, null); | |
for (ResourceUri slide : response.getSlides()) | |
{ | |
System.out.println(slide.getHref()); | |
String imageName = slide.getHref().substring(slide.getHref().lastIndexOf('/') + 1); | |
File imageFile = presentationApi.downloadFile(storageFolderName + imageName, null, null); | |
// Copy the downloaded presentation to the local directory | |
copyFile(imageFile, new File(localPath, imageName)); | |
} | |
System.out.println("Presentation splitted to image copied to: " + localPath); | |
} | |
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); | |
} | |
} |
Dieser Code zeigt, wie man einen PowerPoint-Splitter online mit Java REST Interface entwickelt. Die Split()-Methode erfordert den Namen der hochgeladenen Datei, das Ausgabebildformat unter Verwendung des SlideExportFormat-Enumerators sowie den Von- und Bis-Index, um den Folienbereich zu definieren. Der Href jedes Elements in der Foliensammlung enthält den Verweis auf das von der API erstellte Onlinebild und kann zum Herunterladen der Bilder verwendet werden.
In diesem Artikel haben wir gelernt, wie man einen PPTX-Splitter mit Java RESTful Service entwickelt. Wenn Sie Präsentationen zusammenführen möchten, lesen Sie den Artikel zu Zusammenführen von Präsentationen mit der Java REST API.