Closeable, Flushable, Appendable, AutoCloseablepublic final class UTF8Writer extends Writer
| Modifier and Type | Field | Description |
|---|---|---|
protected byte[][] |
_bufferHolder |
|
protected static ThreadLocal<SoftReference<byte[][]>> |
_bufferRecycler |
This
ThreadLocal contains a SoftRerefence
to a byte array used for holding content to decode |
| Constructor | Description |
|---|---|
UTF8Writer(OutputStream out) |
| Modifier and Type | Method | Description |
|---|---|---|
Writer |
append(char c) |
|
void |
close() |
|
void |
flush() |
|
void |
write(char[] cbuf) |
|
void |
write(char[] cbuf,
int off,
int len) |
|
void |
write(int c) |
|
void |
write(String str) |
|
void |
write(String str,
int off,
int len) |
protected static final ThreadLocal<SoftReference<byte[][]>> _bufferRecycler
ThreadLocal contains a SoftRerefence
to a byte array used for holding content to decodeprotected final byte[][] _bufferHolder
public UTF8Writer(OutputStream out)
public Writer append(char c) throws IOException
append in interface Appendableappend in class WriterIOExceptionpublic void close()
throws IOException
close in interface AutoCloseableclose in interface Closeableclose in class WriterIOExceptionpublic void flush()
throws IOException
flush in interface Flushableflush in class WriterIOExceptionpublic void write(char[] cbuf)
throws IOException
write in class WriterIOExceptionpublic void write(char[] cbuf,
int off,
int len)
throws IOException
write in class WriterIOExceptionpublic void write(int c)
throws IOException
write in class WriterIOExceptionpublic void write(String str) throws IOException
write in class WriterIOExceptionpublic void write(String str, int off, int len) throws IOException
write in class WriterIOExceptionCopyright © 2018. All rights reserved.