Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
gnu.xml.util.XMLWriter
gnu.xml.util.XHTMLWriter
public class XHTMLWriter
extends XMLWriter
Constructor Summary | |
| |
| |
| |
|
Method Summary |
public XHTMLWriter() throws IOException
Constructs this handler with System.out used to write SAX events using the US-ASCII encoding, as XHTML.
public XHTMLWriter(OutputStream out) throws IOException
Constructs this handler such that the specified output stream is used to write SAX events in the US-ASCII encoding, as XHTML.
- Parameters:
out
- Where US-ASCII encoding of the stream of SAX events will be sent.
public XHTMLWriter(Writer out)
Constructs this handler such that the specified output stream is used to write SAX events as XHTML.
- Parameters:
out
- Where the stream of SAX events will be written.
public XHTMLWriter(Writer out, String encoding)
Constructs this handler such that the specified output stream is used to write SAX events as XHTML, labeled with the specified encoding.
- Parameters:
out
- Where the stream of SAX events will be written.encoding
- If non-null, this names the encoding to be placed in the encoding declaration.