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

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

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

package cn.joylau.office.excel;


import cn.joylau.office.excel.config.ExcelReaderCallBack;
import cn.joylau.office.excel.config.ExcelWriterCallBack;

import java.io.InputStream;
import java.io.OutputStream;

/**
 * excel操作的API接口
 */
public interface ExcelApi {

    /**
     * 基于回掉的excel读取
     *
     * @param inputStream excel文件输入流
     * @param callBack    excel读取回掉接口
     * @throws Exception 读取异常
     */
    void read(InputStream inputStream, ExcelReaderCallBack callBack) throws Exception;

    /**
     * 基于回掉的excel写出
     *
     * @param outputStream excel输出流
     * @param callBack     回掉
     * @param moreSheet    多个表格写出
     * @throws Exception 写出异常
     */
    void write(OutputStream outputStream, ExcelWriterCallBack callBack, ExcelWriterCallBack... moreSheet) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy