Java PipedWriter.write(int c)
Syntax
PipedWriter.write(int c) has the following syntax.
public void write(int c) throws IOException
Example
In the following code shows how to use PipedWriter.write(int c) method.
import java.io.*;
/* ww w . ja v a 2s . c o m*/
public class Main {
public static void main(String[] args) {
PipedWriter writer = new PipedWriter();
PipedReader reader = new PipedReader();
try {
// connect the reader and the writer
writer.connect(reader);
writer.write('A');
writer.write('B');
// print what we wrote
for (int i = 0; i < 2; i++) {
System.out.println((char) reader.read());
}
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.io »
Java Tutorial »
java.io »