java多线程使用PipedOutStream和PipedInputStream

package test;
import java.io.PipedInputStream;
import java.io.PipedOutputStream;
public class PipeTest {
public static void main(String[] args) throws Exception {
PipedOutputStream pos = new PipedOutputStream();
PipedInputStream pis = new PipedInputStream();
//链接
pis.connect(pos);
//写线程
InThread it = new InThread(pos,pis);
//读线程
OutThread ot = new OutThread(pos,pis);
it.start();
ot.start();
Thread.sleep(1000);
}
}
class InThread extends Thread{
PipedOutputStream pos = null;
PipedInputStream pis = null ;
InThread(PipedOutputStream pos,PipedInputStream pis ){
this.pos = pos;
this.pis = pis;
}
public void run() {
try {
//写入数据
byte[] b = new String("this is a test !").getBytes();
pos.write(b);
//关闭链接,此处必须关闭,不然会包异常  
pos.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
class OutThread extends Thread{
PipedInputStream pis = null ;
PipedOutputStream pos = null;
OutThread(PipedOutputStream pos,PipedInputStream pis){
this.pis = pis;
this.pos = pos;
}
public void run() {
//读取数据
String m = "";
byte[] b = new byte[1024];
try {
int len ;
len = pis.read(b);
m = m+ new String(b);
while(len!=-1) {
len = pis.read(b); 
m = m+ new String(b);
}
//关闭资源
pis.close();
System.out.println(m);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}

标题名称:java多线程使用PipedOutStream和PipedInputStream
网页路径:http://csruizhi.cn/article/jcehdd.html

其他资讯

Copyright © 2007-2024 成都优众联杰科技有限公司 All Rights Reserved 蜀ICP备2024116266号
友情链接: 定制网站制作 重庆网站建设 营销型网站建设 手机网站制作 手机网站设计 温江网站设计 响应式网站设计方案 重庆手机网站建设 成都商城网站制作 重庆企业网站建设 成都定制网站建设 网站设计 移动手机网站制作 定制网站设计 企业网站建设公司 网站建设推广 专业网站设计 成都网站设计 成都网站建设公司 网站制作公司 成都企业网站制作 成都网站制作