Class InputStreamEditor

java.lang.Object
java.beans.PropertyEditorSupport
org.springframework.beans.propertyeditors.InputStreamEditor
All Implemented Interfaces:
PropertyEditor

public class InputStreamEditor extends PropertyEditorSupport
One-way PropertyEditor which can convert from a text String to a java.io.InputStream, interpreting the given String as a Spring resource location (e.g. a URL String).

Supports Spring-style URL notation: any fully qualified standard URL ("file:", "http:", etc.) and Spring's special "classpath:" pseudo-URL.

Note that such streams usually do not get closed by Spring itself!

Since:
1.0.1
Author:
Juergen Hoeller
See Also:
  • Constructor Details

    • InputStreamEditor

      public InputStreamEditor()
      Create a new InputStreamEditor, using the default ResourceEditor underneath.
    • InputStreamEditor

      public InputStreamEditor(org.springframework.core.io.ResourceEditor resourceEditor)
      Create a new InputStreamEditor, using the given ResourceEditor underneath.
      Parameters:
      resourceEditor - the ResourceEditor to use
  • Method Details