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

nl.siegmann.epublib.domain.ResourceInputStream Maven / Gradle / Ivy

package nl.siegmann.epublib.domain;
import java.io.FilterInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.zip.ZipFile;


/**
 * A wrapper class for closing a ZipFile object when the InputStream derived
 * from it is closed.
 * 
 * @author ttopalov
 * 
 */
public class ResourceInputStream extends FilterInputStream {

	private final ZipFile zipFile;
	
	/**
	 * Constructor.
	 * 
	 * @param in
	 *            The InputStream object.
	 * @param zipFile
	 *            The ZipFile object.
	 */
	public ResourceInputStream(InputStream in, ZipFile zipFile) {
		super(in);
		this.zipFile = zipFile;
	}
	
	@Override
	public void close() throws IOException {
		super.close();
		zipFile.close();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy