public class EncodedWriter
extends java.io.Writer
Constructor and Description |
---|
EncodedWriter(java.io.Writer out,
Encoder encoder)
Creates an EncodedWriter that uses the specified encoder to encode all input before sending it to the wrapped writer.
|
EncodedWriter(java.io.Writer out,
java.lang.String contextName)
Creates an EncodedWriter that uses the specified encoder to encode all input before sending it to the wrapped writer.
|
Modifier and Type | Method and Description |
---|---|
void |
close() |
void |
flush() |
void |
write(char[] cbuf,
int off,
int len) |
public EncodedWriter(java.io.Writer out, Encoder encoder)
out
- the target for all writesencoder
- the encoder to usepublic EncodedWriter(java.io.Writer out, java.lang.String contextName) throws UnsupportedContextException
new EncodedWriter(out, Encoders.forName(contextName));
out
- the target for all writescontextName
- the encoding context name.UnsupportedContextException
- if the contextName is unrecognized or not supported.public void write(char[] cbuf, int off, int len) throws java.io.IOException
write
in class java.io.Writer
java.io.IOException
public void flush() throws java.io.IOException
flush
in interface java.io.Flushable
flush
in class java.io.Writer
java.io.IOException
public void close() throws java.io.IOException
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
close
in class java.io.Writer
java.io.IOException
Copyright © 2010 - 2023 Adobe. All Rights Reserved