Files
hutool/hutool-poi/src/test/java/cn/hutool/poi/excel/IssueI53OSTTest.java
2024-08-09 14:32:30 +08:00

36 lines
820 B
Java
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package cn.hutool.poi.excel;
import cn.hutool.core.lang.Console;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* Sax方式读取合并单元格只有第一个单元格有值其余为null
*/
public class IssueI53OSTTest {
@Test
@Disabled
public void readTest(){
Map<String, Object> result = new HashMap<>();
List<Object> header = new ArrayList<>();
ExcelUtil.readBySax("d:/test/sax_merge.xlsx", -1, (sheetIndex, rowIndex, rowCells) -> {
if(rowIndex == 0){
header.addAll(rowCells);
return;
}
for (int i = 0; i < rowCells.size(); i++) {
result.put((String) header.get(i), rowCells.get(i));
}
Console.log(result);
result.clear();
});
}
}