Odi's astoundingly incomplete notes
New entries | CodeDataOutputStream 64KB limit
Did you know that you can not serialize Strings >64KB through a DataOutputStream?
if (utflen > 65535)
throw new UTFDataFormatException(
"encoded string too long: " + utflen + " bytes");Add comment