我们有一个配置良好的zookeeper和kafka集群节点。用于创建主题和发送有关该主题的消息的手动测试已成功通过。但是当我从e测试设备运行测试以创建具有MQTT协议的主题时,我收到: 由于java.io.IOException导致会话0x0关闭的异常:Len错误271056900 [myid:1] - INFO [NIOServerCxn.Factory:0.0.0.0 / 0.0.0.0:2181:NIOServerCnxn @ 1008] - 客户端的闭合套接字连接/192.18.0.1:15659(没有为客户端建立会话)。
有人可以给我一些提示如何解决这个问题吗? 谢谢
答案 0 :(得分:0)
您似乎超出了private String ellipsisText(String text, FontMetrics metrics, Graphics2D g2, int targetWidth) {
String shortText = text;
int activeIndex = text.length() - 1;
Rectangle2D textBounds = metrics.getStringBounds(shortText, g2);
while (textBounds.getWidth() > targetWidth) {
shortText = text.substring(0, activeIndex--);
textBounds = metrics.getStringBounds(shortText + "...", g2);
}
return activeIndex != text.length() - 1 ? shortText + "..." : text;
}
。尝试增加它。 Here,您可以找到更多信息。