? AppendableOutputStream<T extends Appendable>

java.lang.Object
java.io.OutputStream
org.apache.commons.io.output.AppendableOutputStream<T>
????:
T - The type of the Appendable wrapped by this AppendableOutputStream.
????????:
Closeable, Flushable, AutoCloseable

public class AppendableOutputStream<T extends Appendable> extends OutputStream
OutputStream implementation that writes the data to an Appendable Object.

For example, can be used with any Writer or a StringBuilder or StringBuffer.

???????:
2.5
????:
  • ???????

    • AppendableOutputStream

      public AppendableOutputStream(T appendable)
      Construct a new instance with the specified appendable.
      ??:
      appendable - the appendable to write to
  • ??????