- 论坛徽章:
- 0
|
我用两个线程进行通讯,使用通道进行通讯,想问几个问题,请大家指教。
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){}
}
} |
|