本文介绍: poi生成word文档的table表格,2种方式:1.生成一行一列的table,然后添加合并等操作;2.生成固定行列的table。table表格列合并:row4.getCell(0).getCTTc().addNewTcPr().addNewHMerge().setVal(STMerge.RESTART); row4.getCell(1).getCTTc().addNewTcPr().addNewHMerge().setVal(STMerge.CONTINUE);分页的两种方式:document.creat

使用POI生成word文档的table表格

1. 引入maven依赖

		<dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi</artifactId>
            <version>4.1.2</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml</artifactId>
            <version>4.1.2</version>
        </dependency>
        <dependency>
            <groupId>org.apache.poi</groupId>
            <artifactId>poi-ooxml-schemas</artifactId>
            <version>4.1.2</version>
        </dependency>

2. 生成table的两种方式介绍

2.1 生成一行一列的table

//生成一行一列的table
XWPFTable table = document.createTable();
//添加列
table.getRow(0).addNewTableCell();
//添加行(添加的新行默认就是总共的列数)
table.createRow();

测试Demo:CreateTableDemo1.java

package com.poi.word.demo;


import org.apache.poi.xwpf.usermodel.*;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.STMerge;

import java.io.FileOutputStream;

public class CreateTableDemo1 {
    public static void main(String[] args) throws Exception {
        XWPFDocument document = new XWPFDocument();

        //默认创建一行一列table
        XWPFTable table = document.createTable();
        table.setWidth("100%");

        XWPFTableRow first_row = table.getRow(0);
        XWPFTableCell first_Row_first_Cell = first_row.getCell(0);
        first_Row_first_Cell.setText("我是第一行第一列");

        //第一行添加一列
        first_row.addNewTableCell().setText("我是第一行第二列");

        //创建第二行
        XWPFTableRow snd_row = table.createRow();
        snd_row.getCell(0).setText("第二行,第一列");
        snd_row.getCell(1).setText("第二行,第二列");

        //创建第三行
        XWPFTableRow trd_row = table.createRow();
        XWPFParagraph trd_row_first_paragraph = trd_row.getCell(0).getParagraphs().get(0);
        XWPFRun trdRowFirstCellRun = trd_row_first_paragraph.createRun();
        trdRowFirstCellRun.setFontSize(14);
        trdRowFirstCellRun.setBold(true);
        trdRowFirstCellRun.setText("第三行,第一列");

        trd_row.getCell(1).setText("第三行,第二列");

        //创建第四行
        XWPFTableRow row4 = table.createRow();
        row4.getCell(0).getCTTc().addNewTcPr().addNewHMerge().setVal(STMerge.RESTART);
        row4.getCell(1).getCTTc().addNewTcPr().addNewHMerge().setVal(STMerge.CONTINUE);
        row4.getCell(0).setText("第四行");

        FileOutputStream out = new FileOutputStream("D:\poiword\create_table1.docx");
        document.write(out);
        out.close();
        document.close();
    }
}

生成结果:
在这里插入图片描述

2.2 生成固定行列的table

//生成3行5列的table
XWPFTable table2 = document.createTable(3, 5);

测试Demo:

package com.poi.word.demo;


import org.apache.poi.xwpf.usermodel.XWPFDocument;
import org.apache.poi.xwpf.usermodel.XWPFRun;
import org.apache.poi.xwpf.usermodel.XWPFTable;
import org.apache.poi.xwpf.usermodel.XWPFTableRow;

import java.io.FileOutputStream;

public class CreateTableDemo2 {

    public static void main(String[] args) throws Exception {
        XWPFDocument document = new XWPFDocument();
        XWPFTable table2 = document.createTable(3, 5);
        table2.setWidth("100%");
        for(int i=0; i<3; i++){
            XWPFTableRow t2tRow = table2.getRow(i);
            for(int j=0; j<5; j++){
                if(i==1){
                    XWPFRun t2Row2Run = t2tRow.getCell(j).getParagraphs().get(0).createRun();
                    t2Row2Run.setFontSize(10);
                    t2Row2Run.setBold(true);
                    t2Row2Run.setText("第"+(i+1)+"行,第"+(j+1)+"列");
                }else{
                    t2tRow.getCell(j).setText("第"+(i+1)+"行,第"+(j+1)+"列");
                }

            }
        }

        FileOutputStream out = new FileOutputStream("D:\poiword\create_table2.docx");
        document.write(out);
        out.close();
        document.close();
    }
}

生成结果:
在这里插入图片描述

2.3 table合并列

row4.getCell(0).getCTTc().addNewTcPr().addNewHMerge().setVal(STMerge.RESTART);
row4.getCell(1).getCTTc().addNewTcPr().addNewHMerge().setVal(STMerge.CONTINUE);

2.4 创建多个table存在的问题

在这里插入图片描述
创建的两个table输出时候合并成了一个table,而且第一个table的宽度也变成了第二个table前两列的宽度。

解决方法:

  1. 添加空段落
    XWPFParagraph paragraph1 = document.createParagraph();
  2. 添加分页(会让两个table在不同的页面)
    document.createParagraph().setPageBreak(true); document.createParagraph().createRun().addBreak(BreakType.PAGE);//推荐方式

添加空段落的解决方法Demo:

package com.poi.word.demo;


import org.apache.poi.xwpf.usermodel.*;

import java.io.FileOutputStream;

public class GenWordTableDemo2 {

    public static void main(String[] args) throws Exception {
        XWPFDocument document = new XWPFDocument();

        //默认创建一行一列table
        XWPFTable table = document.createTable();
        table.setWidth("100%");

        XWPFTableRow first_row = table.getRow(0);
        XWPFTableCell first_Row_first_Cell = first_row.getCell(0);
        first_Row_first_Cell.setText("我是第一行第一列");

        //第一行添加一列
        first_row.addNewTableCell().setText("我是第一行第二列");

        //创建第二行
        XWPFTableRow snd_row = table.createRow();
        snd_row.getCell(0).setText("第二行,第一列");
        snd_row.getCell(1).setText("第二行,第二列");

        //创建第三行
        XWPFTableRow trd_row = table.createRow();
        XWPFParagraph trd_row_first_paragraph = trd_row.getCell(0).getParagraphs().get(0);
        XWPFRun trdRowFirstCellRun = trd_row_first_paragraph.createRun();
        trdRowFirstCellRun.setFontSize(14);
        trdRowFirstCellRun.setBold(true);
        trdRowFirstCellRun.setText("第三行,第一列");

        trd_row.getCell(1).setText("第三行,第二列");

        XWPFParagraph paragraph1 = document.createParagraph();

        //分页的两种方式
        //document.createParagraph().setPageBreak(true);
        //document.createParagraph().createRun().addBreak(BreakType.PAGE);//推荐方式

        /**
         * 第2个table
         */
        XWPFTable table2 = document.createTable(3, 5);
        table2.setWidth("100%");
        XWPFTableRow t2FirstRow = table2.getRow(0);
        for(int i=0; i<3; i++){
            XWPFTableRow t2tRow = table2.getRow(i);
            for(int j=0; j<5; j++){
                if(i==1){
                    XWPFRun t2Row2Run = t2tRow.getCell(j).getParagraphs().get(0).createRun();
                    t2Row2Run.setFontSize(10);
                    t2Row2Run.setBold(true);
                    t2Row2Run.setText("第"+(i+1)+"行,第"+(j+1)+"列");
                }else{
                    t2tRow.getCell(j).setText("第"+(i+1)+"行,第"+(j+1)+"列");
                }

            }
        }

        FileOutputStream out = new FileOutputStream("D:\poiword\gen_word2.docx");
        document.write(out);
        out.close();
        document.close();

    }
}

效果:
在这里插入图片描述

原文地址:https://blog.csdn.net/stormkai/article/details/135829900

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。

如若转载,请注明出处:http://www.7code.cn/show_61393.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注