我正在尝试将一个大字符串写入我的 DataOutputStream 但是我得到一个UTFDataFormatException
说:
String more than 65535 UTF bytes long
当我打电话时会发生这种情况:
byteOut.writeUTF(stringArray.get(i));
byteOut 是我的DataOutputStream
,stringArray.get(i);
也是我的字符串。
无论如何要让大字符串进入这个DataOutputStream
或者是否有另一种解决方案。
谢谢!