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.*;
public class write_to_stream {
public static void main(String args[]) throws IOException {
CharArrayWriter ch = new CharArrayWriter();
CharSequence csq = "This stream is character output stream ";
ch.append(csq);
ch.flush();
System.out.println(ch.toString());
ch.write("and it is flowing inside\troseindia.net platform");
ch.flush();
System.out.println(ch.toString());
}
}
|
Download the code

|