Class InputStreamEditor
java.lang.Object
java.beans.PropertyEditorSupport
org.springframework.beans.propertyeditors.InputStreamEditor
- All Implemented Interfaces:
PropertyEditor
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 Summary
ConstructorDescriptionCreate a new InputStreamEditor, using the default ResourceEditor underneath.InputStreamEditor
(ResourceEditor resourceEditor) Create a new InputStreamEditor, using the given ResourceEditor underneath. -
Method Summary
Methods inherited from class java.beans.PropertyEditorSupport
addPropertyChangeListener, firePropertyChange, getCustomEditor, getJavaInitializationString, getSource, getTags, getValue, isPaintable, paintValue, removePropertyChangeListener, setSource, setValue, supportsCustomEditor
-
Constructor Details
-
InputStreamEditor
public InputStreamEditor()Create a new InputStreamEditor, using the default ResourceEditor underneath. -
InputStreamEditor
Create a new InputStreamEditor, using the given ResourceEditor underneath.- Parameters:
resourceEditor
- the ResourceEditor to use
-
-
Method Details
-
setAsText
- Specified by:
setAsText
in interfacePropertyEditor
- Overrides:
setAsText
in classPropertyEditorSupport
- Throws:
IllegalArgumentException
-
getAsText
This implementation returnsnull
to indicate that there is no appropriate text representation.- Specified by:
getAsText
in interfacePropertyEditor
- Overrides:
getAsText
in classPropertyEditorSupport
-