- All Implemented Interfaces:
- java.io.Closeable, java.io.Flushable, java.lang.Appendable, java.lang.AutoCloseable
public class SingleByteTextWriter
extends WriterBase
Escaping writer that will properly escape normal textual content
that need to be escaped, when outputting using a Writer that
produces a subset of Unicode values.
When underlying Writer only allows for direct outputting of a subset of
Unicode values, it is generally done so that only lowest
Unicode characters (7-bit ones for Ascii, 8-bit ones for ISO-Latin,
something similar for other ISO-8859-1 encodings) can be output
as is, and the rest need to be output as character entities.