Following example demonstrates, how to write data in to the stream. In the example subclass CharArrayWriter of abstract Writer class is used to write data in to the underlying character stream.
Java write to stream
Following example demonstrates, how to write data in to
the stream. In the example subclass CharArrayWriter of abstract Writer class
is used to write data in to the underlying character stream. In the example to
write, data class methods are used. With flush() method the data on
the stream is flowed.
write_to_stream .java
import java.io.*;
|