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

cn.joylau.office.word.WordApi Maven / Gradle / Ivy

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

package cn.joylau.office.word;


import cn.joylau.office.word.config.WordReaderCallBack;
import cn.joylau.office.word.config.WordWriterCallBack;

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

/**
 * Word文档读写API
 */
public interface WordApi {

    /**
     * 基于回掉读
     *
     * @param inputStream word输入流
     * @param callBack    回掉
     * @throws Exception 读取异常
     */
    void read(InputStream inputStream, WordReaderCallBack callBack) throws Exception;

    /**
     * 基于回掉写
     *
     * @param outputStream word输出流
     * @param callBack     回掉
     * @throws Exception 写出异常
     */
    void write(OutputStream outputStream, WordWriterCallBack callBack) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy