建议先去看文档
触发场景描述
读excel 格式 xlsx
方法 doReadAll()
触发Bug的代码
public class CountTagHandler extends AbstractXlsxTagHandler {
public CountTagHandler() {
}
public void startElement(XlsxReadContext xlsxReadContext, String name, Attributes attributes) {
String d = attributes.getValue("ref");
String totalStr = d.substring(d.indexOf(":") + 1, d.length());
String c = totalStr.toUpperCase().replaceAll("[A-Z]", "");
xlsxReadContext.readSheetHolder().setApproximateTotalRowNumber(Integer.parseInt(c));
}
}
提示的异常或者没有达到的效果
1条答案
按热度按时间t1rydlwq1#
2.2.11 存在该问题
3.x 已经修复了