您好,登錄后才能下訂單哦!
在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)入成功 后 如下圖所示 )
方法二:
通過(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)建表格效果圖:
免責(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)容。