public interface EscapingWriterFactory
Typical escaping writers replace characters like '<' and '&', as well as some additional characters depending on context. Custom implementations may choose to escape additional characters, for example to make it easier to manually view or edit resulting serialized XML document.
Note about implementing escaping writers: writers need to obey normal
Writer semantics, and specifically they should pass calls to
flush()
and close()
to the underlying
Writer.
Modifier and Type | Method and Description |
---|---|
Writer |
createEscapingWriterFor(OutputStream out,
String enc)
Method called to create an instance of escaping writer that
will output to the specified stream, using the specified
encoding,
and escaping necessary characters (depending on
both type [attr, element text] and encoding).
|
Writer |
createEscapingWriterFor(Writer w,
String enc)
Method called to create an instance of escaping writer that
will output content using specified writer,
and escaping necessary characters (depending on
both type [attr, element text] and encoding).
|
Writer createEscapingWriterFor(Writer w, String enc) throws UnsupportedEncodingException
w
- Underlying writer that the encoding writer should
outputenc
- Encoding to use, as specified by the stream writer
(based on information application has passed)UnsupportedEncodingException
Writer createEscapingWriterFor(OutputStream out, String enc) throws UnsupportedEncodingException
out
- Underlying stream that the encoding writer should
output usingenc
- Encoding to use, as specified by the stream writer
(based on information application has passed)UnsupportedEncodingException
Copyright © 2015 fasterxml.com. All Rights Reserved.