public final class DotTerminatedMessageWriter extends Writer
This class handles the doubling of line-starting periods, converts single linefeeds to NETASCII newlines, and on closing will send the final message terminator dot and NETASCII newline sequence.
Constructor and Description |
---|
DotTerminatedMessageWriter(Writer output)
Creates a DotTerminatedMessageWriter that wraps an existing Writer
output destination.
|
Modifier and Type | Method and Description |
---|---|
void |
close()
Flushes the underlying output, writing all buffered output, but doesn't
actually close the underlying stream.
|
void |
flush()
Flushes the underlying output, writing all buffered output.
|
void |
write(char[] buffer)
Writes a character array to the output.
|
void |
write(char[] buffer,
int offset,
int length)
Writes a number of characters from a character array to the output
starting from a given offset.
|
void |
write(int ch)
Writes a character to the output.
|
void |
write(String string)
Writes a String to the output.
|
void |
write(String string,
int offset,
int length)
Writes part of a String to the output starting from a given offset.
|
public DotTerminatedMessageWriter(Writer output)
output
- The Writer output destination to write the message.public void write(int ch) throws IOException
write
in class Writer
ch
- The character to write.IOException
- If an error occurs while writing to the
underlying output.public void write(char[] buffer, int offset, int length) throws IOException
write
in class Writer
buffer
- The character array to write.offset
- The offset into the array at which to start copying data.length
- The number of characters to write.IOException
- If an error occurs while writing to the underlying
output.public void write(char[] buffer) throws IOException
write
in class Writer
buffer
- The character array to write.IOException
- If an error occurs while writing to the underlying
output.public void write(String string) throws IOException
write
in class Writer
string
- The String to write.IOException
- If an error occurs while writing to the underlying
output.public void write(String string, int offset, int length) throws IOException
write
in class Writer
string
- The String to write.offset
- The offset into the String at which to start copying data.length
- The number of characters to write.IOException
- If an error occurs while writing to the underlying
output.public void flush() throws IOException
flush
in interface Flushable
flush
in class Writer
IOException
- If an error occurs while writing to the underlying
output.public void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class Writer
IOException
- If an error occurs while writing to the underlying
output or closing the Writer.Copyright © 2001–2016 The Apache Software Foundation. All rights reserved.