免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1576 | 回复: 0
打印 上一主题 下一主题

问一个关于通道流(pipedInputStream/PipedOutputStream)的问题。 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-11-04 09:58 |只看该作者 |倒序浏览
我用两个线程进行通讯,使用通道进行通讯,想问几个问题,请大家指教。
1、pipedoutputstream的方法里面write()函数只能输入int类型或者byte[]类型,请问如果已知一个字符串“helloworld”,如何进行格式转换,让他输出?
2、在我下面这个程序里,好像第一个类中的run函数中的循环就运行了一次,然后就不运行了,所以她就一直没有给管道输出数据,但是管道接受的线程好像接受到好几个不同的数据。请高手帮忙。谢谢
import java.io.*;
class po extends Thread{
public static boolean flag3=true;
String name=new String("hello");
int da;
PipedOutputStream po;
po (PipedOutputStream a){po=a;}
public void st(){
flag3=false;
}
public void run(){
byte bb[]=new byte[256];
bb="helloworld".getBytes();
System.out.println(name);
int b=333333;
try
{
do{
po.write(bb);
//po.flush();
try{sleep(1000);}catch(InterruptedException e){}
b--;
System.out.println("this in po"+b);
}while(b<2);}
catch(IOException e){}

System.out.println(name);
}
}


class pi extends Thread{
PipedInputStream pi;
int b;
long c=1;
String d=new String();
pi(PipedInputStream b23){pi=b23;}
public void run(){

while(c<123333)
{
System.out.println("helloame"+b);
try{sleep(1000);}catch(InterruptedException e){}
try{
b=pi.read();
}
catch(IOException e){}
System.out.println(b);
c++;}
}
}

public class test {
public static boolean flag3=true,flag2=true;

public static void main(String[] args) {
try
{
PipedOutputStream po=new PipedOutputStream();
PipedInputStream pi=new PipedInputStream();

po.connect(pi);

po a=new po(po);
pi b=new pi(pi);
a.start();
b.start();
}catch(IOException e){}
}
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP