Java REST API ile PowerPoint’e yeni bir slayt eklemek için bu makaleyi takip edin. Bulut depolamasındaki Java tabanlı bir SDK kullanarak Java tabanlı API ile PowerPoint slaytlarının nasıl ekleneceğini öğreneceksiniz. Mevcut sunumda gerekli dizine slaytlar eklemeniz için size rehberlik edecektir.
Önkoşul
İndirmek Aspose.Slides Cloud SDK for Java for inserting slides
Yukarıdaki SDK ile slayt eklemek için Java projesini kurun
Java REST API ile Slayt Ekleme Adımları
- Slayt eklemek için kullanıcı kimliğini ve sırrını ayarlayarak SlidesApi nesnesini oluşturun
- Slayt eklemek için hedef sunumu bir Bulut depolama alanına yükleyin
- Yüklenen sunum adını ve hedef slayt dizinini sağlayarak CreateSlide() yöntemini çağırın
- Yeni boş bir slayt ekledikten sonra tüm slaytların URL’lerini görüntüle
- Çıktı sunumunu ek bir slaytla indirin ve kaydedin
Bu adımlar, Java RESTful Service ile PowerPoint’e slayt eklemeyi açıklar. Gerekli bilgilerle SlidesApi nesnesini oluşturun, kaynak sunumu Bulut depolamasına yükleyin ve yüklenen dosya adı ve hedef slayt diziniyle CreateSlide() yöntemini çağırın.
Java tabanlı API ile PowerPoint’e Slayt Ekleme Kodu
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_AddPresentationSlides { | |
protected static SlidesApi presentationApi; | |
public Example_AddPresentationSlides() { | |
if (presentationApi == null) { | |
presentationApi = new SlidesApi("appSid", "appKey"); | |
} | |
} | |
public void addSlide() throws ApiException, IOException { | |
String localPath = "/home/downloads/"; | |
String fileName = "Sample.pptx"; | |
String storageFolderName = "TempTests"; | |
presentationApi.uploadFile(storageFolderName+"/"+fileName, readFileToByteArray(localPath + fileName),null); | |
// Add a presentation slide | |
Slides response = presentationApi.createSlide(fileName, null,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 new slide added 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); | |
} | |
} |
Bu kod, Java Low Code API ile PowerPoint’e slayt eklemeyi gösterir. Yeni slayt için düzen türünü, dizini veya düzen slayt adını kullanarak düzen takma adını ayarlayabilirsiniz. Yüklenen sunum parola korumalıysa, CreateSlide yöntemini çağırırken parolayı sağlayın.
Bu makale bize boş bir slayt ekleme sürecini öğretti. Bir slaytı silmek için PowerPoint slaydını Java REST API ile sil makalesine bakın.