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

com.mizhousoft.commons.io.InputStreamSource Maven / Gradle / Ivy

package com.mizhousoft.commons.io;

import java.io.IOException;
import java.io.InputStream;

/**
 * InputStream Source
 * 
 * @version
 */
public interface InputStreamSource
{
	/**
	 * 获取InputStream
	 * 
	 * @return
	 * @throws IOException
	 */
	InputStream getInputStream() throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy