Writer.append

Appends the specified character to this writer.

<p> An invocation of this method of the form {@code out.append(c)} behaves in exactly the same way as the invocation

<pre> out.write(c) </pre>

@param c The 16-bit character to append

@return This writer

@throws IOException If an I/O error occurs

Meta