org.w3c.dom.ls
Interface LSOutput


public interface LSOutput

This interface represents an output destination for data.

This interface allows an application to encapsulate information about an output destination in a single object, which may include a URI, a byte stream (possibly with a specified encoding), a base URI, and/or a character stream.

The exact definitions of a byte stream and a character stream are binding dependent.

The application is expected to provide objects that implement this interface whenever such objects are needed. The application can either provide its own objects that implement this interface, or it can use the generic factory method DOMImplementationLS.createLSOutput() to create objects that implement this interface.

The LSSerializer will use the LSOutput object to determine where to serialize the output to. The LSSerializer will look at the different outputs specified in the LSOutput in the following order to know which one to output to, the first one that is not null and not an empty string will be used:

  1. LSOutput.characterStream
  2. LSOutput.byteStream
  3. LSOutput.systemId

LSOutput objects belong to the application. The DOM implementation will never modify them (though it may make copies and modify the copies, if necessary).

See also the Document Object Model (DOM) Level 3 Load and Save Specification.


Method Summary
 OutputStream sample code for java.io.OutputStream definition code for java.io.OutputStream getByteStream sample code for org.w3c.dom.ls.LSOutput.getByteStream() definition code for org.w3c.dom.ls.LSOutput.getByteStream() ()
          An attribute of a language and binding dependent type that represents a writable stream of bytes.
 Writer sample code for java.io.Writer definition code for java.io.Writer getCharacterStream sample code for org.w3c.dom.ls.LSOutput.getCharacterStream() definition code for org.w3c.dom.ls.LSOutput.getCharacterStream() ()
          An attribute of a language and binding dependent type that represents a writable stream to which 16-bit units can be output.
 String sample code for java.lang.String definition code for java.lang.String getEncoding sample code for org.w3c.dom.ls.LSOutput.getEncoding() definition code for org.w3c.dom.ls.LSOutput.getEncoding() ()
          The character encoding to use for the output.
 String sample code for java.lang.String definition code for java.lang.String getSystemId sample code for org.w3c.dom.ls.LSOutput.getSystemId() definition code for org.w3c.dom.ls.LSOutput.getSystemId() ()
          The system identifier, a URI reference [IETF RFC 2396], for this output destination.
 void setByteStream sample code for org.w3c.dom.ls.LSOutput.setByteStream(java.io.OutputStream) definition code for org.w3c.dom.ls.LSOutput.setByteStream(java.io.OutputStream) (OutputStream sample code for java.io.OutputStream definition code for java.io.OutputStream  byteStream)
          An attribute of a language and binding dependent type that represents a writable stream of bytes.
 void setCharacterStream sample code for org.w3c.dom.ls.LSOutput.setCharacterStream(java.io.Writer) definition code for org.w3c.dom.ls.LSOutput.setCharacterStream(java.io.Writer) (Writer sample code for java.io.Writer definition code for java.io.Writer  characterStream)
          An attribute of a language and binding dependent type that represents a writable stream to which 16-bit units can be output.
 void setEncoding sample code for org.w3c.dom.ls.LSOutput.setEncoding(java.lang.String) definition code for org.w3c.dom.ls.LSOutput.setEncoding(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  encoding)
          The character encoding to use for the output.
 void setSystemId sample code for org.w3c.dom.ls.LSOutput.setSystemId(java.lang.String) definition code for org.w3c.dom.ls.LSOutput.setSystemId(java.lang.String) (String sample code for java.lang.String definition code for java.lang.String  systemId)
          The system identifier, a URI reference [IETF RFC 2396], for this output destination.
 

Method Detail

getCharacterStream sample code for org.w3c.dom.ls.LSOutput.getCharacterStream() definition code for org.w3c.dom.ls.LSOutput.getCharacterStream()

Writer sample code for java.io.Writer definition code for java.io.Writer  getCharacterStream()
An attribute of a language and binding dependent type that represents a writable stream to which 16-bit units can be output.


setCharacterStream sample code for org.w3c.dom.ls.LSOutput.setCharacterStream(java.io.Writer) definition code for org.w3c.dom.ls.LSOutput.setCharacterStream(java.io.Writer)

void setCharacterStream(Writer sample code for java.io.Writer definition code for java.io.Writer  characterStream)
An attribute of a language and binding dependent type that represents a writable stream to which 16-bit units can be output.


getByteStream sample code for org.w3c.dom.ls.LSOutput.getByteStream() definition code for org.w3c.dom.ls.LSOutput.getByteStream()

OutputStream sample code for java.io.OutputStream definition code for java.io.OutputStream  getByteStream()
An attribute of a language and binding dependent type that represents a writable stream of bytes.


setByteStream sample code for org.w3c.dom.ls.LSOutput.setByteStream(java.io.OutputStream) definition code for org.w3c.dom.ls.LSOutput.setByteStream(java.io.OutputStream)

void setByteStream(OutputStream sample code for java.io.OutputStream definition code for java.io.OutputStream  byteStream)
An attribute of a language and binding dependent type that represents a writable stream of bytes.


getSystemId sample code for org.w3c.dom.ls.LSOutput.getSystemId() definition code for org.w3c.dom.ls.LSOutput.getSystemId()

String sample code for java.lang.String definition code for java.lang.String  getSystemId()
The system identifier, a URI reference [IETF RFC 2396], for this output destination.
If the system ID is a relative URI reference (see section 5 in [IETF RFC 2396]), the behavior is implementation dependent.


setSystemId sample code for org.w3c.dom.ls.LSOutput.setSystemId(java.lang.String) definition code for org.w3c.dom.ls.LSOutput.setSystemId(java.lang.String)

void setSystemId(String sample code for java.lang.String definition code for java.lang.String  systemId)
The system identifier, a URI reference [IETF RFC 2396], for this output destination.
If the system ID is a relative URI reference (see section 5 in [IETF RFC 2396]), the behavior is implementation dependent.


getEncoding sample code for org.w3c.dom.ls.LSOutput.getEncoding() definition code for org.w3c.dom.ls.LSOutput.getEncoding()

String sample code for java.lang.String definition code for java.lang.String  getEncoding()
The character encoding to use for the output. The encoding must be a string acceptable for an XML encoding declaration ([XML 1.0] section 4.3.3 "Character Encoding in Entities"), it is recommended that character encodings registered (as charsets) with the Internet Assigned Numbers Authority [IANA-CHARSETS] should be referred to using their registered names.


setEncoding sample code for org.w3c.dom.ls.LSOutput.setEncoding(java.lang.String) definition code for org.w3c.dom.ls.LSOutput.setEncoding(java.lang.String)

void setEncoding(String sample code for java.lang.String definition code for java.lang.String  encoding)
The character encoding to use for the output. The encoding must be a string acceptable for an XML encoding declaration ([XML 1.0] section 4.3.3 "Character Encoding in Entities"), it is recommended that character encodings registered (as charsets) with the Internet Assigned Numbers Authority [IANA-CHARSETS] should be referred to using their registered names.