溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java 在Word中創(chuàng)建表格

發(fā)布時(shí)間:2020-08-09 03:55:30 來(lái)源:ITPUB博客 閱讀:196 作者:Jazzz 欄目:編程語(yǔ)言

Word文檔中, 表格 能使 文本內(nèi)容更加 簡(jiǎn)潔 明了 ,同時(shí)也能使 數(shù)據(jù) 展示 更加清晰直觀。 本文將介紹如何使 Java 代碼 Word文檔中創(chuàng)建表格 設(shè)置 其單元格的 背景顏色

Jar文件導(dǎo)入方法

方法一:

下載 免費(fèi) Free Spire. Doc  for Java 包并解壓縮 , 然后從lib文件夾下, Spire. Doc .jar包 導(dǎo)入 到你的Java應(yīng)用程序中。 導(dǎo)入成功 如下圖所示

  Java 在Word中創(chuàng)建表格

方法二:

通過(guò) Maven倉(cāng)庫(kù)安裝 導(dǎo)入 。 詳細(xì)的操作步驟 請(qǐng)參考鏈接:

https://www.e-iceblue.cn/licensing/install-spirepdf-for-java-from-maven-repository.html

Java代碼示例

import com.spire.doc.*;
import com.spire.doc.documents.*;
import com.spire.doc.fields.TextRange;
import java.awt.*;
public class CreateTable {
    public static void main(String[] args) {
        //創(chuàng)建Word文檔
        Document document = new Document();
        //添加一個(gè)section
        Section section = document.addSection();
        //數(shù)據(jù)
        String[] header = {"姓名", "性別", "部門(mén)", "工號(hào)"};
        String[][] data =
                {
                        new String[]{"Winny", "女", "綜合", "0109"},
                        new String[]{"Lois", "女", "綜合", "0111"},
                        new String[]{"Jois", "男", "技術(shù)", "0110"},
                        new String[]{"Moon", "女", "銷售", "0112"},
                        new String[]{"Vinit", "女", "后勤", "0113"},
                };
        //添加表格
        Table table = section.addTable(true);
        //設(shè)置表格的行數(shù)和列數(shù)
        table.resetCells(data.length + 1, header.length);
        //設(shè)置第一行作為表格的表頭并添加數(shù)據(jù)
        TableRow row = table.getRows().get(0);
        row.isHeader(true);
        row.setHeight(20);
        row.setHeightType(TableRowHeightType.Exactly);
        row.getRowFormat().setBackColor(Color.gray);
        for (int i = 0; i < header.length; i++) {
            row.getCells().get(i).getCellFormat().setVerticalAlignment(VerticalAlignment.Middle);
            Paragraph p = row.getCells().get(i).addParagraph();
            p.getFormat().setHorizontalAlignment(HorizontalAlignment.Center);
            TextRange range1 = p.appendText(header[i]);
            range1.getCharacterFormat().setFontName("Arial");
            range1.getCharacterFormat().setFontSize(12f);
            range1.getCharacterFormat().setBold(true);
        }
        //添加數(shù)據(jù)到剩余行
        for (int r = 0; r < data.length; r++) {
            TableRow dataRow = table.getRows().get(r + 1);
            dataRow.setHeight(25);
            dataRow.setHeightType(TableRowHeightType.Exactly);
            dataRow.getRowFormat().setBackColor(Color.white);
            for (int c = 0; c < data[r].length; c++) {
                dataRow.getCells().get(c).getCellFormat().setVerticalAlignment(VerticalAlignment.Middle);
                TextRange range2 = dataRow.getCells().get(c).addParagraph().appendText(data[r][c]);
                range2.getCharacterFormat().setFontName("Arial");
                range2.getCharacterFormat().setFontSize(10f);
            }
        }
        //設(shè)置單元格背景顏色
        for (int j = 1; j < table.getRows().getCount(); j++) {
            if (j % 2 == 0) {
                TableRow row2 = table.getRows().get(j);
                for (int f = 0; f < row2.getCells().getCount(); f++) {
                    row2.getCells().get(f).getCellFormat().setBackColor(new Color(173, 216, 230));
                }
            }
        }
        //保存文檔
        document.saveToFile("創(chuàng)建表格.docx", FileFormat.Docx_2013);
    }
}

創(chuàng)建表格效果圖:

Java 在Word中創(chuàng)建表格


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI