码迷,mamicode.com
首页 > 编程语言 > 详细

java基础知识回顾之javaIO类--管道流PipedOutputStream和PipedIutputStream

时间:2014-08-12 21:47:04      阅读:306      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   java   使用   os   io   for   

管道流(线程通信流):管道流的主要作用是可以进行两个线程间的通讯,分为管道输出流(PipedOutputStream)、管道输入流(PipedInputStream),如果想要进行管道输出,则必须要把输出流连在输入流之上。如图所示:

bubuko.com,布布扣

       1.管道输入流应该连接到管道输出流 ,输入流和输出流可以直接连接
       2.使用多线程操作,结合线程进行操作。通常由某个线程从管道输入流中(PipedInputStream)对象读取。
          并由其他线程将其写入到相应的端到输出流中。不能使用单线程对输入流对象向和输出流对象进行操作,因为会造成 死锁问题。
      3.管道流连接:(1)使用构造方法进行连接PipedOutputStream(PipedInputStream snk)  创建连接到指定管道输入流的管道输出流。
                          (2)public void connect(PipedInputStream snk)throws IOException,使用connect方法进行连接

下面看代码:

package com.lp.ecjtu.io.piped;

import java.io.IOException;
import java.io.PipedInputStream;
import java.io.PipedOutputStream;

public class PipedDemo {

    public static void main(String[] args) {
        PipedOutputStream out = new PipedOutputStream();
        PipedInputStream in = new PipedInputStream();
        try {
            out.connect(in);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }//输出管道流连接输入管道流
        new Thread(new OutputThread(out)).start();
        new Thread(new InputThread(in)).start();
    }

}

class InputThread implements Runnable{
    private PipedInputStream in;
    public InputThread(PipedInputStream in){
        this.in = in;
    }

    @Override
    public void run() {
        // TODO Auto-generated method stub
        
        try {
            byte[] buff = new byte[1024];
            int len = in.read(buff);
            String s = new String(buff,0,len);
            System.out.println(s);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
}

class OutputThread implements Runnable{
    private PipedOutputStream out;
    public OutputThread(PipedOutputStream out){
        this.out = out;
    }

    @Override
    public void run() {
        String str = "hello Piped!";
        try {
            out.write(str.getBytes());
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }finally{
            try {
                if(out != null){
                    out.close();
                }
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
        
    }
}

 

 


            

 

java基础知识回顾之javaIO类--管道流PipedOutputStream和PipedIutputStream,布布扣,bubuko.com

java基础知识回顾之javaIO类--管道流PipedOutputStream和PipedIutputStream

标签:style   blog   color   java   使用   os   io   for   

原文地址:http://www.cnblogs.com/200911/p/3908428.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!