java:管道流(线程间管道流)

Posted 穆晟铭

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java:管道流(线程间管道流)相关的知识,希望对你有一定的参考价值。

class Send implements Runnable{

	PipedOutputStream pos = null;
	
	public Send()
	{
		this.pos = new PipedOutputStream();
	}
	
	public PipedOutputStream getPipedOutputStream()
	{
		return this.pos;
	}
	
	@Override
	public void run() {
		// TODO 自动生成的方法存根
		String str = "hello world!!!";
		try {
			this.pos.write(str.getBytes());
		} catch (IOException e) {
			// TODO 自动生成的 catch 块
			e.printStackTrace();
		}
		try {
			this.pos.close();
		} catch (IOException e) {
			// TODO 自动生成的 catch 块
			e.printStackTrace();
		}
	}
	
}

class Receive implements Runnable{
	
	PipedInputStream pis = null;

	public Receive(){
		this.pis = new PipedInputStream();
	}
	
	public PipedInputStream getPipedInputStream()
	{
		return this.pis;
	}
	
	@Override
	public void run() {
		// TODO 自动生成的方法存根
		byte b[] = new byte[1024];
		int len = 0;
		try {
			len = this.pis.read(b);
		} catch (IOException e) {
			// TODO 自动生成的 catch 块
			e.printStackTrace();
		}
		try {
			this.pis.close();
		} catch (IOException e) {
			// TODO 自动生成的 catch 块
			e.printStackTrace();
		}
		System.out.println(new String(b,0,len) );
	}
	
}

public class PipedOutputStreamDemo {

	public static void main(String[] args) throws Exception {
		// TODO 自动生成的方法存根
		Send send =  new Send();
		Receive rec = new Receive();
		send.getPipedOutputStream().connect(rec.getPipedInputStream());
		new Thread(send).start();
		new Thread(rec).start();
	}

}

  

以上是关于java:管道流(线程间管道流)的主要内容,如果未能解决你的问题,请参考以下文章

java多线程通过管道流实现不同线程之间的通信

JAVA的IO编程:管道流

线程间通讯-管道输入输出流(源码分析)

Java使用PipedStream管道流通信

java.io.PipedInputStream

JDK源码阅读之PipedInoutStream与PipedOutputStream