接口 InputStreamSource

所有已知子接口:
ContextResource, Resource, WritableResource
所有已知实现类:
AbstractFileResolvingResource, AbstractResource, ByteArrayResource, ClassPathResource, DefaultResourceLoader.ClassPathContextResource, FileSystemResource, FileUrlResource, InputStreamResource, PathResource, UrlResource, VfsResource

public interface InputStreamSource
Copy from https://github.com/spring-projects/spring-framework.git, with less modifications Simple interface for objects that are sources for an InputStream.

This is the base interface for Spring's more extensive Resource interface.

For single-use streams, InputStreamResource can be used for any given InputStream. Spring's ByteArrayResource or any file-based Resource implementation can be used as a concrete instance, allowing one to read the underlying content stream multiple times. This makes this interface useful as an abstract content source for mail attachments, for example.

从以下版本开始:
20.01.2004
作者:
Juergen Hoeller
另请参阅:
  • 方法详细资料

    • getInputStream

      InputStream getInputStream() throws IOException
      Return an InputStream for the content of an underlying resource.

      It is expected that each call creates a fresh stream.

      This requirement is particularly important when you consider an API such as JavaMail, which needs to be able to read the stream multiple times when creating mail attachments. For such a use case, it is required that each getInputStream() call returns a fresh stream.

      返回:
      the input stream for the underlying resource (must not be null)
      抛出:
      FileNotFoundException - if the underlying resource does not exist
      IOException - if the content stream could not be opened
      另请参阅: