All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.joylau.office.excel.ExcelReader Maven / Gradle / Ivy

The newest version!
/*******************************************************************************
 * Copyright (c) 2017 by JoyLau. All rights reserved
 ******************************************************************************/

package cn.joylau.office.excel;

import java.io.InputStream;
import java.util.List;

/**
 * Excel读取器接口,用于将excel文件读取为java对象
 */
public interface ExcelReader {
    /**
     * 读取excel为java对象集合
     *
     * @param inputStream excel输入流
     * @return 读取结果
     * @throws Exception 读取异常
     */
    List readExcel(InputStream inputStream) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy