专注于互联网--专注于架构

最新标签
网站地图
文章索引
Rss订阅
字符串比较长了之后,数据就发不过去了,经检查JDK的源代码,原来有长度限制。 为了保险起见,我们还是不要超过65535/3 我看取20000好了。 public final void writeUTF(String str) throws IOException { writeUTF(str, this); } static int writeUTF(String str, DataOutput out) throws IOException { int strlen = str.length(); int utflen = 0; int c, count [阅读全文] [PDF]
1 共1条 分1页