It's possible for UTF to corrupt string data, and if we are a server, we might end up corrupting that data between clients. Instead of storing strings as strings internally, just store them as byte[]s, and only do the UTF conversion when a string is specifically requested by the user.
It's possible for UTF to corrupt string data, and if we are a server, we might end up corrupting that data between clients. Instead of storing strings as strings internally, just store them as byte[]s, and only do the UTF conversion when a string is specifically requested by the user.