Package com.ctc.wstx.io
Class UTF8Writer
- java.lang.Object
-
- java.io.Writer
-
- com.ctc.wstx.io.UTF8Writer
-
- All Implemented Interfaces:
CompletelyCloseable,Closeable,Flushable,Appendable,AutoCloseable
public final class UTF8Writer extends Writer implements CompletelyCloseable
Specialized buffering UTF-8 writer used byXmlWriter. The main reason for custom version is to allow for efficient buffer recycling; the second benefit is that encoder has less overhead for short content encoding (compared to JDK default codecs).
-
-
Constructor Summary
Constructors Constructor Description UTF8Writer(WriterConfig cfg, OutputStream out, boolean autoclose)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidcloseCompletely()voidflush()voidwrite(char[] cbuf)voidwrite(char[] cbuf, int off, int len)voidwrite(int c)voidwrite(String str)voidwrite(String str, int off, int len)-
Methods inherited from class java.io.Writer
append, append, append, nullWriter
-
-
-
-
Constructor Detail
-
UTF8Writer
public UTF8Writer(WriterConfig cfg, OutputStream out, boolean autoclose)
-
-
Method Detail
-
closeCompletely
public void closeCompletely() throws IOException- Specified by:
closeCompletelyin interfaceCompletelyCloseable- Throws:
IOException
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein classWriter- Throws:
IOException
-
flush
public void flush() throws IOException- Specified by:
flushin interfaceFlushable- Specified by:
flushin classWriter- Throws:
IOException
-
write
public void write(char[] cbuf) throws IOException- Overrides:
writein classWriter- Throws:
IOException
-
write
public void write(char[] cbuf, int off, int len) throws IOException- Specified by:
writein classWriter- Throws:
IOException
-
write
public void write(int c) throws IOException- Overrides:
writein classWriter- Throws:
IOException
-
write
public void write(String str) throws IOException
- Overrides:
writein classWriter- Throws:
IOException
-
write
public void write(String str, int off, int len) throws IOException
- Overrides:
writein classWriter- Throws:
IOException
-
-