me.excel.tools.exporter.UserFileExporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-excel-tools Show documentation
Show all versions of java-excel-tools Show documentation
powerful and convenient excel tools
The newest version!
package me.excel.tools.exporter;
import java.io.IOException;
import java.io.OutputStream;
/**
* file exporter
*
* Created by hanwen on 15-12-16.
*/
public interface UserFileExporter {
/**
* export file to supplied output stream
*
* @param outputStream notice close the stream
* @throws IOException io exception
*/
void export(OutputStream outputStream) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy