cn.hutool.poi.excel.sax.handler.RowHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hutool-poi Show documentation
Show all versions of hutool-poi Show documentation
Hutool POI工具类(对MS Office操作)
package cn.hutool.poi.excel.sax.handler;
import java.util.List;
/**
* Sax方式读取Excel行处理器
* @author looly
*
*/
@FunctionalInterface
public interface RowHandler {
/**
* 处理一行数据
* @param sheetIndex 当前Sheet序号
* @param rowIndex 当前行号
* @param rowList 行数据列表
*/
void handle(int sheetIndex, int rowIndex, List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy