Java如何建立一個空的Wold文件?

2019-10-16 22:27:08

在Java程式設計中,如何使用Java來建立一個空的Wold文件?

注意:需要存取網址:http://poi.apache.org/download.html , 下載一個Apache POI軟體包。這裡下載最新版本:poi-bin-3.17-20170915.tar.gz解壓並將全部.jar檔案匯入。

需要匯入全部包,如下圖所示 -

以下是使用Java建立一個空的Wold文件的程式。

package com.yiibai;

import java.io.File;
import java.io.FileOutputStream;
import org.apache.poi.xwpf.usermodel.XWPFDocument;

public class CreateWordDocument {
    public static void main(String[] args) throws Exception {

        // Blank Document
        XWPFDocument document = new XWPFDocument();

        // Write the Document in file system
        FileOutputStream out = new FileOutputStream(new File("createdocument.docx"));

        document.write(out);
        out.close();

        System.out.println("createdocument.docx written successully");
    }
}

執行上面範例程式碼,得到以下結果 -

createdocument.docx written successully