| java.lang.Object java.io.Writer com.sun.xml.stream.writers.UTF8OutputStreamWriter
UTF8OutputStreamWriter | final public class UTF8OutputStreamWriter extends Writer (Code) | | This class is used to write a stream of chars as a stream of
bytes using the UTF8 encoding. It assumes that the underlying
output stream is buffered or does not need additional buffering.
It is more efficient than using a java.io.OutputStreamWriter
because it does not need to be wrapped in a
java.io.BufferedWriter . Creating multiple instances
of java.io.BufferedWriter has been shown to be very
expensive in JAX-WS.
author: Santiago.PericasGeertsen@sun.com |
lastUTF16CodePoint | int lastUTF16CodePoint(Code) | | Java represents chars that are not in the Basic Multilingual
Plane (BMP) in UTF-16. This int stores the first code unit
for a code point encoded in two UTF-16 code units.
|
out | OutputStream out(Code) | | Undelying output stream. This class assumes that this
output stream does not need buffering.
|
|
|