在Java程式設計中,如何建立一個空的PPT文件?
注意:需要存取網址:http://poi.apache.org/download.html , 下載一個Apache POI軟體包。這裡下載最新版本:poi-bin-3.17-20170915.tar.gz解壓並全部匯入 。
需要匯入全部包,如下圖所示 -
以下是使用Java建立空PPT文件的程式。
package com.yiibai;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import org.apache.poi.xslf.usermodel.XMLSlideShow;
public class CreatingBlankPPT {
public static void main(String args[]) throws IOException {
// creating a new empty slide show
XMLSlideShow ppt = new XMLSlideShow();
// creating an FileOutputStream object
File file = new File("blank_ppt.pptx");
FileOutputStream out = new FileOutputStream(file);
// saving the changes to a file
ppt.write(out);
System.out.println("Presentation created successfully");
out.close();
}
}
執行上面範例程式碼,得到以下結果 -
Presentation created successfully
這就建立一個空的PPT檔案了。