代码拉取完成,页面将自动刷新
package com.gc.nio.tcp.socket;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.net.InetSocketAddress;
import java.nio.ByteBuffer;
import java.nio.channels.SocketChannel;
public class NioClient {
public static void main(String[] args) {
for(int i=0;i<2;i++){
new Thread(new Runnable(){
@Override
public void run() {
//打开客户端通道
try {
SocketChannel channel=SocketChannel.open();
channel.connect(new InetSocketAddress("192.168.155.1",8879));
ByteArrayOutputStream baos=new ByteArrayOutputStream();
ByteBuffer buff=ByteBuffer.allocate(1024);
//写数据
String str="我是客户端,我来访问你了"+Thread.currentThread().getId();
buff.put(str.getBytes());
buff.flip();
channel.write(buff);
channel.shutdownOutput();
//读数据
int len=0;
while(true){
buff.clear();
len=channel.read(buff);
if(len==-1)break;
buff.flip();
while(buff.hasRemaining()){
baos.write(buff.get());
}
}
System.out.println("来自服务器的消息:"+new String(baos.toByteArray()));
channel.close();
} catch (IOException e) {
// TODO Auto-generated catch block
System.out.println("服务器未启动");
e.printStackTrace();
}
}
}).start();
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。