c# 使用socket套接字接收反馈消息,接收到的是字节数组,我将字节数组转换成字符串的时候,出现乱码!

2024-11-23 03:37:04
推荐回答(3个)
回答1:

在这里可以下到一个自动检测字节流编码的dll,注意选取C#版本,这个检测算法据说是firefox使用的算法,貌似成功率蛮高的
http://code.google.com/p/nuniversalchardet/

释例代码:
using Mozilla.NUniversalCharDet;

static string GetResult(byte[] webBuffer)
{

UniversalDetector detector = new UniversalDetector(null);

detector.HandleData(webBuffer, 0, webBuffer.Length);

detector.DataEnd();

if (detector.GetDetectedCharset() != null)
{
return detector.GetDetectedCharset();
}

return "UTF-8";

}

回答2:

byte[] msg = Encoding.UTF8.GetBytes("This is a test");
byte[] bytes = new byte[256];
try
{
// Blocks until send returns.
int i = server.Send(msg);
Console.WriteLine("Sent {0} bytes.", i);

// Get reply from the server.
i = server.Receive(bytes);
Console.WriteLine(Encoding.UTF8.GetString(bytes));
}
你要知道 socket.send发送的是什么编码的

回答3:

要保证发送和接受采用相同的编码格式。