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.
public 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.
public StreamResult()
Zero-argument default constructor.
public StreamResult(OutputStream outputStream)
Construct a StreamResult from a byte stream. Normally, a stream should be used rather than a reader, so that the transformer may use instructions contained in the transformation instructions to control the encoding.
outputStream
- A valid OutputStream reference.public StreamResult(Writer writer)
Construct a StreamResult from a character stream. Normally, a stream should be used rather than a reader, so that the transformer may use instructions contained in the transformation instructions to control the encoding. However, there are times when it is useful to write to a character stream, such as when using a StringWriter.
writer
- A valid Writer reference.public StreamResult(String systemId)
Construct a StreamResult from a URL.
systemId
- Must be a String that conforms to the URI syntax.public StreamResult(File f)
Construct a StreamResult from a File.
f
- Must a non-null File reference.public void setOutputStream(OutputStream outputStream)
Set the ByteStream that is to be written to. Normally, a stream should be used rather than a reader, so that the transformer may use instructions contained in the transformation instructions to control the encoding.
outputStream
- A valid OutputStream reference.public OutputStream getOutputStream()
Get the byte stream that was set with setOutputStream.
public void setWriter(Writer writer)
Set the writer that is to receive the result. Normally, a stream should be used rather than a writer, so that the transformer may use instructions contained in the transformation instructions to control the encoding. However, there are times when it is useful to write to a writer, such as when using a StringWriter.
writer
- A valid Writer reference.public Writer getWriter()
Get the character stream that was set with setWriter.
public void setSystemId(String systemId)
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).
setSystemId
in interface Result
systemId
- The system identifier as a URI string.public void setSystemId(File f)
Set the system ID from a File
reference.
f
- Must a non-null File reference.public String getSystemId()
Get the system identifier that was set with setSystemId.
getSystemId
in interface Result
© 1993–2017, 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.