黑马程序员技术交流社区
标题:
关于管道流实现线程间通信的问题
[打印本页]
作者:
柳彬
时间:
2012-9-12 09:45
标题:
关于管道流实现线程间通信的问题
本帖最后由 柳彬 于 2012-9-24 08:02 编辑
关于管道流实现线程间通信的问题,大家帮忙举个具有实战的例子。要有源代码哦。
作者:
王金科
时间:
2012-9-12 20:45
package cn.study.io;
import java.io.IOException;
import java.io.PipedInputStream;
import java.io.PipedOutputStream;
public class PipedStreamDemo {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
// TODO Auto-generated method stub
final PipedInputStream pis = new PipedInputStream();
final PipedOutputStream pos = new PipedOutputStream();
Thread read = new Thread(){
public void run(){
try {
byte[] buf = new byte[1024];
System.out.println("读取前,没有数据,等待...");
int len = pis.read(buf);
System.out.println("读到数据,打印数据...");
String str = new String(buf,0,len);
System.out.println(str);
pis.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
};
Runnable write = new Runnable(){
public void run(){
try {
System.out.println("开始写入数据,等待6秒后...");
Thread.sleep(6000);
pos.write("piped lai la".getBytes());
pos.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
};
pis.connect(pos);
read.start();
new Thread(write).start();
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2