1·、引入pom文件:
<!-- POI--><dependency><groupId>org.apache.poi</groupId><artifactId>poi</artifactId><version>5.2.3</version></dependency><dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml</artifactId><version>5.2.3</version></dependency><dependency><groupId>org.apache.poi</groupId><artifactId>poi-scratchpad</artifactId><version>5.2.3</version></dependency>
2、写一个实体类Table1
@Data
public class Table1 {private String name;private String age;private String high;private String edBackground;
}
3、进行简单输出每一行和每一列数据
public static void main(String[] args) {
//使用java代码读取Word表格数据,封装到user实体类中try {XWPFDocument document = new XWPFDocument(new FileInputStream("d:/test12.docx"));// 获取所有表格List<XWPFTable> tables = document.getTables();// 遍历每个表格for (XWPFTable table : tables) {// 读取表格每一行table.getRows().forEach(row -> {// 读取每行的每个单元格row.getTableCells().forEach(cell -> {// 获取单元格文本String text = cell.getText();System.out.print(text + "\t");});System.out.println();});}} catch (Exception e) {e.printStackTrace();}}
4、输出的数据进行封装到实体中。docx 类型
public static void main(String[] args) {//使用java代码读取Word表格数据,封装到user实体类中try {/*docx文件将表格输出。*/XWPFDocument document = new XWPFDocument(new FileInputStream("d:/test12.docx"));System.out.println("=====>" + document.getTables());// 获取所有表格List<XWPFTable> tables = document.getTables();/*** 遍历Word中所有表格。将表格中的数据进行输出。*///遍历所有表for (XWPFTable table : tables) {System.out.println(table.getText());System.out.println("------------------------>");//获取Word表格中的第二行。====>数据。 第一行为字段名,第二行字段名的值List<XWPFTableCell> tableCells1 = table.getRows().get(1).getTableCells();Table1 table11 = new Table1();//将读取的值进行记录。String data = "";//遍历第二行的每一列for (int i = 0; i < tableCells1.size(); i++) {System.out.println("=获取数据===" + tableCells1.get(i).getText());System.out.println("------------------------>");//最后一个不用添加 逗号分割if (i + 1 == tableCells1.size()) {data += tableCells1.get(i).getText();} else {//全部放到一个list中使用,进行分割data += tableCells1.get(i).getText() + ",";}}//输出System.out.println("data======>" + data);//将data进行分割以逗号进行隔开String[] split = data.split(",");table11.setName(split[0]);table11.setAge(split[1]);table11.setHigh(split[2]);table11.setEdBackground(split[3]);System.out.println("打印table11====》" + table11);} catch (Exception e) {e.printStackTrace();}}
5、输出的数据进行封装到实体中。doc 类型
public static void main(String[] args) {//使用java代码读取Word表格数据,封装到user实体类中try {FileInputStream fis = new FileInputStream(("d:/test.doc"));HWPFDocument hwpfDocument = new HWPFDocument(fis);//遍历表格TableIterator tableIterator = new TableIterator(hwpfDocument.getRange());while (tableIterator.hasNext()){Table table = tableIterator.next();System.out.println("获取table的所有内容=====>"+table.text());System.out.println("获取table 一共有这么多行=====>"+table.numRows());
// for (int i = 0; i <table.numRows() ; i++) {TableRow row = table.getRow(1);String data="";for (int j = 0; j < row.numCells(); j++) {//获取每一列的值TableCell cell = row.getCell(j);//如果存在 字符去掉String tableText = cell.text().replaceAll("\u0007", "");//判断是否为最后一列if (j+1!=row.numCells()){data+=tableText+",";}else {data+=tableText;}}System.out.println("第data的值===》"+data);String[] split = data.split(",");//往实体类中进行赋值操作Table1 table1 = new Table1();table1.setName(split[0]);table1.setAge(split[1]);table1.setHigh(split[2]);table1.setEdBackground(split[3]);System.out.println("第table1===》"+table1);}
// }} catch (Exception e) {e.printStackTrace();}}