| Modifier and Type | Field and Description |
|---|---|
static String |
FEATURE
If
TransformerFactory returns true when passed this value as an argument, the Transformer supports Result output of this type.
|
PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING| Constructor and Description |
|---|
StreamResult()
Zero-argument default constructor.
|
StreamResult(File
Construct a StreamResult from a File.
|
StreamResult(OutputStream
Construct a StreamResult from a byte stream.
|
StreamResult(String
Construct a StreamResult from a URL.
|
StreamResult(Writer
Construct a StreamResult from a character stream.
|
| Modifier and Type | Method and Description |
|---|---|
OutputStream |
getOutputStream()
Get the byte stream that was set with setOutputStream.
|
String |
getSystemId()
Get the system identifier that was set with setSystemId.
|
Writer |
getWriter()
Get the character stream that was set with setWriter.
|
void |
setOutputStream(OutputStream
Set the ByteStream that is to be written to.
|
void |
setSystemId(File
Set the system ID from a
File reference.
|
void |
setSystemId(String
Set the systemID that may be used in association with the byte or character stream, or, if neither is set, use this value as a writeable URI (probably a file name).
|
void |
setWriter(Writer
Set the writer that is to receive the result.
|
public static final StringFEATURE
TransformerFactory.getFeature(java.lang.String) returns true when passed this value as an argument, the Transformer supports Result output of this type.
public StreamResult()
public StreamResult(OutputStreamoutputStream)
outputStream - A valid OutputStream reference.
public StreamResult(Writerwriter)
writer - A valid Writer reference.
public StreamResult(StringsystemId)
systemId - Must be a String that conforms to the URI syntax.
public StreamResult(Filef)
f - Must a non-null File reference.
public void setOutputStream(OutputStreamoutputStream)
outputStream - A valid OutputStream reference.
public OutputStreamgetOutputStream()
public void setWriter(Writerwriter)
writer - A valid Writer reference.
public WritergetWriter()
public void setSystemId(StringsystemId)
setSystemId in interface
Result
systemId - The system identifier as a URI string.
public void setSystemId(Filef)
Set the system ID from a File reference.
f - Must a non-null File reference.
public StringgetSystemId()
getSystemId in interface
Result