本文最后更新于:2021年6月15日 晚上
在之前的文章中 easypoi 导入 Excel 最佳实践 详细介绍了如何使用 EasyPoi 来进行数据的导入与多重校验,但是 EasyPoi 更擅长与比较规整的表格输入导入,如果遇到不规则的表格时,可能就没那么轻松搞定导入了。本文主要介绍如何实现不规则表格数据导入。
本文源码地址:
首先来看一下,不规则的表格长什么样子。如图所示,这种表格如果继续使用 EasyPoi 其实比较困难做到很便捷的导入,但是这种表格一般格式相对固定,只有个别值的位置不规则(蓝色框内),而中间位置的数据格式比较规整(红色框内)。
我们可以取长补短,不规则的地方数据特殊处理读取,而有规则的地方依然使用 EasyPoi 进行读取。
读取示例
红色框内的数据读取本文就不再展示了,可以参考上文的链接。本文主要讲解如何提取蓝色框内的数据。为了方便使用,笔者参考了网上的文章,抽取了一个工具类,基于所见即所得的方式去获取对应单元格的值。
使用示例代码:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| public class ExcelReadHelperTest {
@Test public void testImport() { InputStream in = getClass().getResourceAsStream("/excel/示例 Excel3.xlsx"); ExcelReadHelper readHelper = new ExcelReadHelper(in); String b4 = readHelper.getValueAt("B", 4); String c23 = readHelper.getValueAt("C", 23); String c24 = readHelper.getValueAt("C", 24); String m4 = readHelper.getValueAt("M", 4); String m5 = readHelper.getValueAt("M", 5); Assert.assertEquals("一众科技有限公司", b4); Assert.assertEquals("13112345678", c23); Assert.assertEquals("370827198801021000", c24); Assert.assertEquals("XH-HZHY-20170504", m4); Assert.assertEquals("2017.5.4", m5); readHelper.close(); } }
|
如图所示,如果要读取联系人电话,先找到数据所在单元格,C23,代码中直接通过 readHelper.getValueAt("C", 23);
即可获取对应的值。
工具类源码
需要依赖 POI 相关依赖,如果引入了 EasyPoi 的话,就无需重复引入了。
EasyPoi 的依赖:
| <dependency> <groupId>cn.afterturn</groupId> <artifactId>easypoi-web</artifactId> <version>3.2.0</version> </dependency>
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215
| import org.apache.poi.hssf.util.CellReference; import org.apache.poi.ss.usermodel.*; import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import java.io.IOException; import java.io.InputStream; import java.text.DecimalFormat;
public class ExcelReadHelper { private Workbook workbook; private Sheet sheet; private int sheetCount; private Row row;
public ExcelReadHelper(InputStream is) { try { workbook = new XSSFWorkbook(is); } catch (Exception e) { throw new RuntimeException(e); } sheetCount = workbook.getNumberOfSheets(); setSheetAt(0); }
public void close() { if (workbook != null) { try { workbook.close(); } catch (IOException e) { throw new RuntimeException(e); } } }
public String getCellLoc(Integer row, Integer col) { return String.format("[%s,%s]", row + 1, CellReference.convertNumToColString(col)); }
public void setSheetByLabel(String... labels) { Sheet sheet = null; for (String label : labels) { sheet = workbook.getSheet(label); if (sheet != null) { break; } } if (sheet == null) { StringBuilder sheetStr = new StringBuilder(); for (String label : labels) { sheetStr.append(label).append(","); } sheetStr.deleteCharAt(sheetStr.lastIndexOf(",")); throw new RuntimeException(sheetStr.toString() + "Sheet does not exist"); } this.sheet = sheet; }
public void setSheetAt(Integer index) { Sheet sheet = workbook.getSheetAt(index); if (sheet == null) { throw new RuntimeException(index + "Sheet does not exist"); } this.sheet = sheet; }
@SuppressWarnings("deprecation") public String getValueAt(String colName, int row) { int colIdx = CellReference.convertColStringToIndex(colName); int rowIdx = row < 0 ? 0 : row - 1; Cell cell = sheet.getRow(rowIdx).getCell(colIdx); String value = null; if (cell != null) { switch (cell.getCellType()) { case Cell.CELL_TYPE_STRING: value = cell.getStringCellValue() + ""; break; case Cell.CELL_TYPE_NUMERIC: if (DateUtil.isCellDateFormatted(cell)) { value = cell.getDateCellValue().getTime() + ""; } else { DecimalFormat df = new DecimalFormat("0"); return df.format(cell.getNumericCellValue()); } break; case Cell.CELL_TYPE_FORMULA: value = cell.getNumericCellValue() + ""; break; case Cell.CELL_TYPE_BOOLEAN: value = cell.getBooleanCellValue() + ""; break; } } return (value == null || value.isEmpty()) ? null : value.trim(); }
public String getValue(Integer col) { return getValueAt(CellReference.convertNumToColString(col + 1), col); }
public String getSheetLabel() { String label = null; if (sheet != null) { label = sheet.getSheetName(); } return label; }
public Boolean offsetRow(Integer offset) { boolean state = true; if (row == null) { row = sheet.getRow(offset - 1); } else { row = sheet.getRow(row.getRowNum() + offset); if (row == null) { state = false; } } return state; }
public Boolean setRow(Integer index) { row = sheet.getRow(index); return row != null; }
public Boolean nextRow() { return offsetRow(1); }
public Boolean nextSheet() { boolean state = true; if (sheet == null) { sheet = workbook.getSheetAt(0); } else { int index = workbook.getSheetIndex(sheet) + 1; if (index >= sheetCount) { sheet = null; } else { sheet = workbook.getSheetAt(index); }
if (sheet == null) { state = false; } } row = null; return state; }
}
|
源码地址
参考