安卓平臺 使用Jword生成word文檔到本地【親測成功】

爲何使用Jword呢?由於IText 、Freemark在安卓平臺上壓根很差使唄!
首先,Jword的網址:[Jword的網址](http://http://www.independentsoft.de/jword/index.html)
下載Jword.zip以後,解壓,使用JWord\lib-android中的jword-1.0.jar放到項目中引入。
根據Jword網址中的demo,或者壓縮包中也有,來寫個demo。
下面以生成一個word表格爲例,這樣就ok了,測試成功,再根據本身的需求豐富一下就能夠了。

    WordDocument doc = new WordDocument();

    Run run1 = new Run();
    run1.addText("Below is one table with 5 rows and 3 columns.");

    Paragraph paragraph1 = new Paragraph();
    paragraph1.add(run1);

    Cell cell1 = new Cell();

    Row row1 = new Row();
    row1.add(cell1);
    row1.add(cell1);
    row1.add(cell1);

    Table table1 = new Table(StandardBorderStyle.SINGLE_LINE);
    table1.setWidth(new Width(TableWidthUnit.PERCENT, 100));

    table1.add(row1);
    table1.add(row1);
    table1.add(row1);
    table1.add(row1);
    table1.add(row1);

    doc.getBody().add(paragraph1);
    doc.getBody().add(table1);

    try {
        doc.save(getExternalSdCardPath() + "/test.docx");
    } catch (IOException e) {
        e.printStackTrace();
    }

word截圖

須要說明一下,JWord只有30天的試用期,過時須要購買,299歐元foreverhtml

相關文章
相關標籤/搜索