聊天系统java源代码 java聊天软件代码(13)


BufferedInputStream bis;
JTextArea ta;
public MyThread1(BufferedInputStream bis,JTextArea ta){
this.bis=bis;
this.ta=ta;
}
public void run(){
try{
while(true){
byte[] b=new byte[100];
int length=bis.read(b);
String message=new String(b,0,length);
ta.append("AA:"+message+"\n");
}
}catch(Exception e){
e.printStackTrace();
}
}
}
聊天系统java源代码的介绍就聊到这里吧,感谢你花时间阅读本站内容,更多关于java聊天软件代码、聊天系统java源代码的信息别忘了在本站进行查找喔 。

推荐阅读