class Send implements Runnable{ PipedOutputStream pos = null; public Send() { this.pos = new PipedOutputStream(); } public PipedOutputStream getPipedO... ...
分类:
编程语言 时间:
2017-07-09 23:06:34
阅读次数:
136
管道流的主要作用可以用于两个线程之间的通信,有管道输出流 PipeOutputStream和管道输入流 PipeInputStream。然后通过connect将两个管道连接起来。import java.io.PipedInputStream;import java.io.PipedOutputStr...
分类:
编程语言 时间:
2015-09-07 10:44:18
阅读次数:
281
java管道流PipedOutputStream和PipedInputStream基本操作...
分类:
编程语言 时间:
2014-05-03 15:53:11
阅读次数:
343