91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java 多線程使用PipedOutStream和PipedInputStream

發布時間:2020-08-07 18:20:15 來源:ITPUB博客 閱讀:155 作者:hgs19921112 欄目:編程語言
package test;
import java.io.PipedInputStream;
import java.io.PipedOutputStream;
public class PipeTest {
public static void main(String[] args) throws Exception {
PipedOutputStream pos = new PipedOutputStream();
PipedInputStream pis = new PipedInputStream();
//鏈接
pis.connect(pos);
//寫線程
InThread it = new InThread(pos,pis);
//讀線程
OutThread ot = new OutThread(pos,pis);
it.start();
ot.start();
Thread.sleep(1000);
}
}
class InThread extends Thread{
PipedOutputStream pos = null;
PipedInputStream pis = null ;
InThread(PipedOutputStream pos,PipedInputStream pis ){
this.pos = pos;
this.pis = pis;
}
public void run() {
try {
//寫入數據
byte[] b = new String("this is a test !").getBytes();
pos.write(b);
//關閉鏈接,此處必須關閉,不然會包異常  
pos.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
class OutThread extends Thread{
PipedInputStream pis = null ;
PipedOutputStream pos = null;
OutThread(PipedOutputStream pos,PipedInputStream pis){
this.pis = pis;
this.pos = pos;
}
public void run() {
//讀取數據
String m = "";
byte[] b = new byte[1024];
try {
int len ;
len = pis.read(b);
m = m+ new String(b);
while(len!=-1) {
len = pis.read(b); 
m = m+ new String(b);
}
//關閉資源
pis.close();
System.out.println(m);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

民和| 商城县| 喀什市| 昌吉市| 天镇县| 莒南县| 新源县| 资中县| 五大连池市| 德钦县| 平远县| 隆回县| 太和县| 密云县| 石棉县| 通州区| 绥江县| 崇文区| 三穗县| 万全县| 鲁山县| 龙井市| 吉木乃县| 木兰县| 靖西县| 微博| 三亚市| 泽普县| 康平县| 宜丰县| 江北区| 会理县| 新闻| 滦南县| 肥乡县| 鄂托克前旗| 英山县| 双流县| 湖北省| 雅江县| 曲阜市|