The java.io.Writer interface has two methods called append and write. What are the differences between these two? It even says that
An invocation of t
Writer.append(c) returns the Writer instance. Thus you can chain multiple calls to append, e.g. out.append("Hello").append("World");
Writer.append(c)
out.append("Hello").append("World")