Skip to content

DefaultExcelReader

清沐 edited this page Jul 22, 2019 · 1 revision
方法签名(Method) 描述(Desc)
static DefaultExcelReader of(Class<?> dataType) 根据需要操作的数据类型获取该类的实例对象,所有操作基于该实例对象
DefaultExcelReader sheet(int index) 设置需要导入的sheet索引,默认为0,即第一个sheet
DefaultExcelReader rowFilter(Predicate rowFilter) 行过滤器,只导入符合rowFilter的行
SaxExcelReader beanFilter(Predicate beanFilter) 过滤bean
DefaultExcelReader parallelRead() 设置是否并行读取 2.4.0版本废弃
List read(@NonNull InputStream fileInputStream) throws Exception 读取文件流
List read(@NonNull InputStream fileInputStream, String password) throws Exception 使用密码读取文件流
List read(@NonNull File file) throws Exception 读取文件
List read(@NonNull File file, String password) throws Exception 使用密码读取文件
void readThen(@NonNull File file,Consumer consumer) throws Exception 读取一行处理一行
void readThen(@NonNull File file, String password,Consumer consumer) throws Exception 使用密码读取一行处理一行
void readThen(@NonNull InputStream fileInputStream,Consumer consumer) throws Exception 读取一行处理一行
void readThen(@NonNull InputStream fileInputStream, String password,Consumer consumer) throws Exception 使用密码读取一行处理一行
Clone this wiki locally