java.io.IOException: 远程主机强迫关闭了一个现有的连接。如何解决
publicvoidexceptionCaught(ChannelHandlerContextctx,ExceptionEvente)throwsException{e....
public void exceptionCaught(ChannelHandlerContext ctx, ExceptionEvent e)
throws Exception {
e.getCause().printStackTrace();
Channel channel = e.getChannel();
channel.close();
if (channelGroup.contains(channel)) {
System.out.println("一个客户端退出:"+channel.getId());
channelGroup.remove(channel);
}
}
用netty做聊天室,走到e.getCause().printStackTrace()的时候就报错了,请问怎么解决 展开
throws Exception {
e.getCause().printStackTrace();
Channel channel = e.getChannel();
channel.close();
if (channelGroup.contains(channel)) {
System.out.println("一个客户端退出:"+channel.getId());
channelGroup.remove(channel);
}
}
用netty做聊天室,走到e.getCause().printStackTrace()的时候就报错了,请问怎么解决 展开
1个回答
展开全部
private static final Logger logger=Logger.getLogger(xxxxx.class.getName());
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
logger.log(
Level.WARNING,
"Unexpected exception from downstream.", cause);
ctx.close();
}
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception {
logger.log(
Level.WARNING,
"Unexpected exception from downstream.", cause);
ctx.close();
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询