Source Code : BufferedWriter and threads
Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com.
Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com.
Click Here or search from google with Libraries Name you get jar file related it
BufferedWriter and threads

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.PipedReader;
import java.io.PipedWriter;
import java.io.Reader;
import java.io.Writer;
public class PipedCharacters extends Object {
public static void writeStuff(Writer rawOut) {
try {
BufferedWriter out = new BufferedWriter(rawOut);
String[][] line = { { "Java", "Source", "and", "Support." }};
for (int i = 0; i < line.length; i++) {
String[] word = line[i];
for (int j = 0; j < word.length; j++) {
out.write(word[j]);
}
out.newLine();
}
out.flush();
out.close();
} catch (IOException x) {
x.printStackTrace();
}
}
public static void readStuff(Reader rawIn) {
try {
BufferedReader in = new BufferedReader(rawIn);
String line;
while ((line = in.readLine()) != null) {
System.out.println("read line: " + line);
}
System.out.println("Read all data from the pipe");
} catch (IOException x) {
x.printStackTrace();
}
}
public static void main(String[] args) {
try {
final PipedWriter out = new PipedWriter();
final PipedReader in = new PipedReader(out);
Runnable runA = new Runnable() {
public void run() {
writeStuff(out);
}
};
Thread threadA = new Thread(runA, "threadA");
threadA.start();
Runnable runB = new Runnable() {
public void run() {
readStuff(in);
}
};
Thread threadB = new Thread(runB, "threadB");
threadB.start();
} catch (IOException x) {
x.printStackTrace();
}
}
}
Thank with us