mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
fix code
This commit is contained in:
@@ -216,7 +216,10 @@ public class Excel03SaxReader implements HSSFListener, ExcelSaxReader<Excel03Sax
|
|||||||
if(this.rid < 0 && null != this.sheetName){
|
if(this.rid < 0 && null != this.sheetName){
|
||||||
throw new POIException("Sheet [{}] not exist!", this.sheetName);
|
throw new POIException("Sheet [{}] not exist!", this.sheetName);
|
||||||
}
|
}
|
||||||
processLastCellSheet();
|
if(this.curRid != -1 && isProcessCurrentSheet()) {
|
||||||
|
//只有在当前指定的sheet中,才触发结束事件,且curId=-1时也不处理,避免重复调用
|
||||||
|
processLastCellSheet();
|
||||||
|
}
|
||||||
} else if (isProcessCurrentSheet()) {
|
} else if (isProcessCurrentSheet()) {
|
||||||
if (record instanceof MissingCellDummyRecord) {
|
if (record instanceof MissingCellDummyRecord) {
|
||||||
// 空值的操作
|
// 空值的操作
|
||||||
|
Reference in New Issue
Block a user