On this page
Class StreamResult
- All Implemented Interfaces:
-
Result
public class StreamResult extends Object implements Result
Acts as an holder for a transformation result, which may be XML, plain Text, HTML, or some other form of markup.
- Since:
- 1.4
Field Summary
Modifier and Type | Field | Description |
---|---|---|
static final String |
FEATURE |
If TransformerFactory.getFeature(java.lang.String) returns true when passed this value as an argument, the Transformer supports Result output of this type.
|
Fields declared in interface javax.xml.transform.Result
PI_DISABLE_OUTPUT_ESCAPING, PI_ENABLE_OUTPUT_ESCAPING
Constructor Summary
Constructor | Description |
---|---|
StreamResult() |
Zero-argument default constructor.
|
StreamResult |
Construct a StreamResult from a File.
|
StreamResult |
Construct a StreamResult from a byte stream.
|
StreamResult |
Construct a StreamResult from a character stream.
|
StreamResult |
Construct a StreamResult from a URL.
|
Method Summary
Modifier and Type | Method | 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 |
Set the ByteStream that is to be written to.
|
void |
setSystemId |
Set the system ID from a File reference.
|
void |
setSystemId |
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 |
Set the writer that is to receive the result.
|
Field Details
FEATURE
public static final String FEATURE
TransformerFactory.getFeature(java.lang.String)
returns true when passed this value as an argument, the Transformer supports Result output of this type.
- See Also:
Constructor Details
StreamResult
public StreamResult()
StreamResult
public StreamResult(OutputStream outputStream)
- Parameters:
outputStream
- A valid OutputStream reference.
StreamResult
public StreamResult(Writer writer)
- Parameters:
writer
- A valid Writer reference.
StreamResult
public StreamResult(String systemId)
- Parameters:
systemId
- Must be a String that conforms to the URI syntax.
StreamResult
public StreamResult(File f)
- Parameters:
f
- Must a non-null File reference.
Method Details
setOutputStream
public void setOutputStream(OutputStream outputStream)
- Parameters:
outputStream
- A valid OutputStream reference.
getOutputStream
public OutputStream getOutputStream()
- Returns:
- The byte stream that was set with setOutputStream, or null if setOutputStream or the ByteStream constructor was not called.
setWriter
public void setWriter(Writer writer)
- Parameters:
writer
- A valid Writer reference.
getWriter
public Writer getWriter()
- Returns:
- The character stream that was set with setWriter, or null if setWriter or the Writer constructor was not called.
setSystemId
public void setSystemId(String systemId)
- Specified by:
setSystemId
in interfaceResult
- Parameters:
systemId
- The system identifier as a URI string.
setSystemId
public void setSystemId(File f)
Set the system ID from a File
reference.
- Parameters:
f
- Must a non-null File reference.
getSystemId
public String getSystemId()
- Specified by:
getSystemId
in interfaceResult
- Returns:
- The system identifier that was set with setSystemId, or null if setSystemId was not called.
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.xml/javax/xml/transform/stream/StreamResult.html