A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© Alan 中级黑马   /  2013-5-8 21:20  /  1186 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 Alan 于 2013-5-9 20:56 编辑
  1. package cn.itcast.io;

  2. import java.io.IOException;
  3. import java.io.PipedInputStream;
  4. import java.io.PipedOutputStream;
  5. import java.util.concurrent.ExecutorService;
  6. import java.util.concurrent.Executors;

  7. public class PipedDemo {
  8.         
  9.         public static void main(String[] args) throws Exception {
  10.         
  11.         final PipedOutputStream pipeout = new PipedOutputStream();
  12.         final PipedInputStream pipein = new PipedInputStream(pipeout);
  13.         
  14.         
  15.         ExecutorService pool = Executors.newCachedThreadPool();
  16.         
  17.         pool.execute(new Runnable(){
  18.                 @Override
  19.                 public void run() {
  20.                         try {                                
  21.                                 pipeout.write("hello motou".getBytes());
  22.                                 pipeout.close();
  23.                         } catch (IOException e) {
  24.                                 throw new RuntimeException("shuchushibai");
  25.                         }
  26.                         System.out.println(Thread.currentThread());
  27.                 }               
  28.         });
  29.         pool.execute(new Runnable(){

  30.                 @Override
  31.                 public void run() {
  32.                         
  33.                         try {
  34.                                 
  35.                                 byte[] bit = new byte[1024];
  36.                                 int len = pipein.read(bit);
  37.                                 System.out.println(new String(bit,0,len));
  38.                                 pipein.close();
  39.                         } catch (IOException e) {
  40.                                 throw new RuntimeException("shurushibai");
  41.                         }        
  42.                         System.out.println(Thread.currentThread());
  43.                 }               
  44.         });
  45.         
  46.         }
  47. }
复制代码

评分

参与人数 1技术分 +1 收起 理由
田磊阳 + 1

查看全部评分

2 个回复

倒序浏览
占楼 帮顶
回复 使用道具 举报
程序大致是没哟问题的,也没有产生死锁。

进行了一个小的修改,判断是否结束


while(len!=-1)
           System.out.println(new String(bit,0,len));


|--你说的应该是程序为什么没有结束吧
   因为你创建的是一个ThreadPool也就是所谓的线程池。

需要加pool.shutDown(); 或者pool.shutdownNow();


希望可以帮到你

评分

参与人数 1技术分 +1 收起 理由
田磊阳 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马