Uses of Interface
org.miaixz.bus.office.excel.sax.handler.RowHandler
Packages that use RowHandler
Package
Description
Sax方式操作Excel方式的封装
Sax读取中行处理器的定义和实现
Excel 操作工具类
-
Uses of RowHandler in org.miaixz.bus.office.excel.sax
Fields in org.miaixz.bus.office.excel.sax declared as RowHandlerMethods in org.miaixz.bus.office.excel.sax with parameters of type RowHandlerModifier and TypeMethodDescriptionExcel07SaxReader.setRowHandler(RowHandler rowHandler) 设置行处理器voidSheetDataSaxHandler.setRowHandler(RowHandler rowHandler) 设置行处理器Constructors in org.miaixz.bus.office.excel.sax with parameters of type RowHandlerModifierConstructorDescriptionExcel03SaxReader(RowHandler rowHandler) 构造Excel07SaxReader(RowHandler rowHandler) 构造Excel07SaxReader(RowHandler rowHandler, boolean padCellAtEndOfRow) 构造SheetDataSaxHandler(RowHandler rowHandler, boolean padCellAtEndOfRow) 构造 -
Uses of RowHandler in org.miaixz.bus.office.excel.sax.handler
Classes in org.miaixz.bus.office.excel.sax.handler that implement RowHandlerModifier and TypeClassDescriptionclass抽象行数据处理器,通过实现AbstractRowHandler.handle(int, long, List)处理原始数据 并调用AbstractRowHandler.handleData(int, long, Object)处理经过转换后的数据。classBean形式的行处理器 将一行数据转换为Map,key为指定行,value为当前行对应位置的值classMap形式的行处理器 将一行数据转换为Map,key为指定行,value为当前行对应位置的值 -
Uses of RowHandler in org.miaixz.bus.office.excel.xyz
Methods in org.miaixz.bus.office.excel.xyz with parameters of type RowHandlerModifier and TypeMethodDescriptionstatic ExcelSaxReader<?> ExcelSaxKit.createSaxReader(boolean isXlsx, RowHandler rowHandler) static voidExcelKit.readBySax(File file, int rid, RowHandler rowHandler) 通过Sax方式读取Excel,同时支持03和07格式static voidExcelKit.readBySax(File file, String idOrRidOrSheetName, RowHandler rowHandler) 通过Sax方式读取Excel,同时支持03和07格式static voidExcelKit.readBySax(InputStream in, int rid, RowHandler rowHandler) 通过Sax方式读取Excel,同时支持03和07格式static voidExcelKit.readBySax(InputStream in, String idOrRidOrSheetName, RowHandler rowHandler) 通过Sax方式读取Excel,同时支持03和07格式static voidExcelKit.readBySax(String path, int rid, RowHandler rowHandler) 通过Sax方式读取Excel,同时支持03和07格式static voidExcelKit.readBySax(String path, String idOrRid, RowHandler rowHandler) 通过Sax方式读取Excel,同时支持03和07格式