黑马程序员技术交流社区
标题:
管道流的问题
[打印本页]
作者:
奔跑的二叉树
时间:
2013-9-20 10:26
标题:
管道流的问题
本帖最后由 奔跑的二叉树 于 2013-9-20 20:54 编辑
先贴代码
package cn.os.du;
import java.io.*;
class Read implements Runnable
{
private PipedInputStream in;
Read(PipedInputStream in)
{
this.in=in;
}
public void run()
{
try
{
byte[] buf =new byte[1024];
System.out.println("读取前 ..没有数据阻塞");
int len=in.read(buf);
System.out.println("读到数据 ..阻塞结束");
String s=new String(buf,0,len);
System.out.println(s);
in.close();
}
catch(IOException e)
{
throw new RuntimeException("管道读取流失败");
}
}
}
class Write implements Runnable
{
private PipedOutputStream out;
Write(PipedOutputStream out)
{
this.out=out;
}
public void run()
{
try
{
System.out.println("开始写入数据------------------------,等待1秒后。");
Thread.sleep(500);
out.write("piped lai la".getBytes());
out.close();
}
catch(IOException e)
{
throw new RuntimeException("管道输出流失败");
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
public class pipedStream {
public static void main(String[] args) throws IOException {
PipedInputStream in=new PipedInputStream();
PipedOutputStream out=new PipedOutputStream();
in.connect(out);//连接管道 输入输出流
Read r=new Read(in);
Write w=new Write(out);
new Thread(r).start();
new Thread(w).start();
}
}
复制代码
为什么我执行的结果每次都一样,应该输入输出流都有可能先执行的啊,试了N遍都一样
作者:
yuchunfeng1221
时间:
2013-9-20 14:39
我运行了一下,你先开启写入数据线程,写入就先执行了,就是把最后两句代码调换.可能是线程运行太快,如果数据太少,如果数据多的话,看的就明显了
作者:
神之梦
时间:
2013-9-20 14:46
我试了三次,输入输出流有交替先运行的情况
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2