public Writer append (char c) throws IOException

Implementing: java.lang.Appendable

Appends the specified character to this writer.

An invocation of this method of the form out.append(c) behaves in exactly the same way as the invocation

     out.write(c) 

Returns:  This writer

Since:  1.5