From dbce5a14d20f735a4bfc94e28af1a31c4f92c679 Mon Sep 17 00:00:00 2001 From: Looly Date: Fri, 21 Feb 2020 18:58:03 +0800 Subject: [PATCH] fix bugs --- .../poi/excel/test/ExcelSaxReadTest.java | 29 ------------------- 1 file changed, 29 deletions(-) diff --git a/hutool-poi/src/test/java/cn/hutool/poi/excel/test/ExcelSaxReadTest.java b/hutool-poi/src/test/java/cn/hutool/poi/excel/test/ExcelSaxReadTest.java index 2a293a62b..fb3393fcd 100644 --- a/hutool-poi/src/test/java/cn/hutool/poi/excel/test/ExcelSaxReadTest.java +++ b/hutool-poi/src/test/java/cn/hutool/poi/excel/test/ExcelSaxReadTest.java @@ -55,35 +55,6 @@ public class ExcelSaxReadTest { ExcelUtil.readBySax("e:/B23_20180404164901240.xlsx", 2, (sheetIndex, rowIndex, rowList) -> Console.log(rowList)); } - @Test - @Ignore - public void readBySaxTest3() { - ExcelUtil.readBySax("e:/excel/writeMapTest.xlsx", 0, (sheetIndex, rowIndex, rowList) -> Console.log(rowList)); - } - - @Test - @Ignore - public void readBySaxTest4() { - ExcelUtil.readBySax("e:/excel/single_line.xlsx", 2, createRowHandler()); - } - - @Test - @Ignore - public void readBySaxTest5() { - ExcelUtil.readBySax("f:\\test\\222.xlsx", 0, createRowHandler()); - } - - @Test - @Ignore - public void readBySaxTest6() { - ExcelUtil.readBySax("f:\\test\\sax_test.xlsx", 0, createRowHandler()); - } - - @Test - public void readBySaxTest7() { - ExcelUtil.readBySax("d:/test/行政许可信息.xls", 0, (sheetIndex, rowIndex, rowList) -> Console.log(rowList)); - } - private RowHandler createRowHandler() { return (sheetIndex, rowIndex, rowlist) -> { // Console.log("[{}] [{}] {}", sheetIndex, rowIndex, rowlist);