Tcp Server Gets ???????? Instead Of The Real Message December 12, 2023 Post a Comment The server is written in c# and works correctly with a client I made in c#, now i'm trying to make an android client but the server doesn't get the real message, it gets just a lotSolution 1: Change: string message = Encoding.Unicode.GetString(buffer, 0, data); Copyinto:string message = Encoding.UTF8.GetString(buffer, 0, data); CopyTry also UTF16. I think java uses this encoding now. Share Post a Comment for "Tcp Server Gets ???????? Instead Of The Real Message"
Post a Comment for "Tcp Server Gets ???????? Instead Of The Real Message"