首页 > 代码库 > java IO 管道流PipedOutputStream/PipedInputStream
java IO 管道流PipedOutputStream/PipedInputStream
详情:管道流的具体实现
import java.io.IOException; import java.io.PipedInputStream; import java.io.PipedOutputStream; //A线程发送数据给B线程 class AThread extends Thread{ private PipedOutputStream out=new PipedOutputStream(); public PipedOutputStream getOut() { return out; } public void run() { try { for (int i = 65; i <65+26; i++) { out.wait(i); } out.close(); } catch (Exception e) { // TODO 自动生成的 catch 块 e.printStackTrace(); } } } //B线程接收A线程发送的数据 class BThread extends Thread{ private PipedInputStream in=null; public BThread(AThread aThread) throws Exception{ in=new PipedInputStream(aThread.getOut()); } public void run() { int len=-1; try { while((len=in.read())!=-1){ System.out.println((char)len); } in.close(); } catch (IOException e) { // TODO 自动生成的 catch 块 e.printStackTrace(); } } } public class PipedOutputStreamDemo { //管道流 public static void main(String[] args) throws Exception { AThread a=new AThread(); BThread b=new BThread(a); a.start(); b.start(); } }
java IO 管道流PipedOutputStream/PipedInputStream
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。