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-all Show documentation
Show all versions of hutool-all Show documentation
Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。
package cn.hutool.poi.excel.sax.handler;
import org.apache.poi.ss.usermodel.CellStyle;
import java.util.List;
/**
* Sax方式读取Excel行处理器
*
* @author looly
*/
@FunctionalInterface
public interface RowHandler {
/**
* 处理一行数据
*
* @param sheetIndex 当前Sheet序号
* @param rowIndex 当前行号,从0开始计数
* @param rowCells 行数据,每个Object表示一个单元格的值
*/
void handle(int sheetIndex, long rowIndex, List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy