我的tcp客户端请求netty服务器,而netty服务器使用writeAndFlush()返回393718字节。但客户端只接收262142个字节。 我使用“tcpdump -A”来收集数据包,小于393718。所以我认为适当的是在netty writeAndFlush()函数?
tcp server:
public static void main (String args[]) {
int processorsNumber = Runtime.getRuntime().availableProcessors() * 3;
ThreadFactory threadFactory = new DefaultThreadFactory("work thread pool");
EventLoopGroup bossLoopGroup = new NioEventLoopGroup(1);
EventLoopGroup workLoopGroup = new NioEventLoopGroup(processorsNumber, threadFactory, SelectorProvider.provider());
try {
ServerBootstrap sb = new ServerBootstrap();
sb.group(bossLoopGroup , workLoopGroup)
.channel(NioServerSocketChannel.class)
.option(ChannelOption.SO_BACKLOG, 128)
.childOption(ChannelOption.SO_KEEPALIVE, true)
.childHandler(new ChannelInitializer<NioSocketChannel>() {
@Override
protected void initChannel(NioSocketChannel ch) throws Exception {
//ch.pipeline().addLast(new LineBasedFrameDecoder(1000));
ch.pipeline().addLast(new TcpServerHandler());
}
});
sb.bind(new InetSocketAddress("0.0.0.0", 18881)).sync().channel().closeFuture().sync();
} catch (InterruptedException e) {
logger.error("netty error", e);
e.printStackTrace();
} finally {
bossLoopGroup.shutdownGracefully();
workLoopGroup.shutdownGracefully();
}
}
服务器处理程序:
public void channelRead(ChannelHandlerContext ctx, Object msg) {
ByteBuf in = (ByteBuf) msg;
String cmd = in.toString(CharsetUtil.UTF_8);
logger.info(cmd);
String retCode = "";
String file = "E:\\sz\\app.log";
try {
FileReader fr = new FileReader(file);
BufferedReader br = new BufferedReader(fr);
String buffer = null;
while ((buffer = br.readLine()) != null) {
retCode += buffer;
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
logger.info("return:" + retCode);
byte[] result = retCode.getBytes();
logger.info("======================="+result.length);
ByteBuf resultBuf = Unpooled.buffer(result.length);
resultBuf.writeBytes(result);
ctx.writeAndFlush(resultBuf);
ctx.close();
}
tcp客户端:
public static void main(String[] args) {
StringBuilder response = new StringBuilder();
try {
Socket socket = new Socket();
InetSocketAddress address = new InetSocketAddress("127.0.0.1", 18881);
socket.connect(address, 3000);
socket.setSoTimeout(10 * 1000);
OutputStream clientRequest = socket.getOutputStream();
String cmd = "cmd";
clientRequest.write(cmd.getBytes());
clientRequest.flush();
InputStream clientResponse = socket.getInputStream();
int maxLen = 1024;
byte[] contextBytes = new byte[maxLen];
int readLen;
while ((readLen = clientResponse.read(contextBytes, 0, maxLen)) != -1) {
response.append(new String(contextBytes, 0, readLen));
}
clientRequest.close();
clientResponse.close();
} catch (IOException e) {
logger.error("tcp error", e);
e.printStackTrace();
}
String result = response.toString();
System.out.println(result);
System.out.println(result.getBytes().length);
}
答案 0 :(得分:1)
1.ctx.writeAndFlush(resultBuf) 是异步的。
write()-> 将 bytebuf 添加到 netty 单向链表中。
public void addMessage(Object msg, int size, ChannelPromise promise) {
// 创建一个待写出的消息节点
Entry entry = Entry.newInstance(msg, size, total(msg), promise);
if (tailEntry == null) {
flushedEntry = null;
tailEntry = entry;
} else {
Entry tail = tailEntry;
tail.next = entry;
tailEntry = entry;
}
if (unflushedEntry == null) {
unflushedEntry = entry;
}
incrementPendingOutboundBytes(size, false);
}
flush()-> 写入 SOCKT 缓存。
protected int doWriteBytes(ByteBuf buf) throws Exception {
final int expectedWrittenBytes = buf.readableBytes();
return buf.readBytes(javaChannel(), expectedWrittenBytes);
}
标准文字:
// 3. writeAndFlush
xxx.writeAndFlush().addListener(future -> {
if (future.isDone()) {
xxx.close();
}
});