c# 使用socket套接字接收反馈消息,接收到的是字节数组,我将字节数组转换成字符串的时候,出现乱码!
byte[]buffer=newbyte[512];intLen=socket.Receive(buffer);stringclientCommand=System.Te...
byte[] buffer = new byte[512];
int Len = socket.Receive(buffer);
string clientCommand = System.Text.Encoding.Default.GetString(buffer );
//string clientCommand11 = System.Text.Encoding.GetEncoding("gb2312").GetString(buffer)
我用GB2312、UTF-8、UNICODE全试过了都是乱码,哪位大虾帮忙指点! 展开
int Len = socket.Receive(buffer);
string clientCommand = System.Text.Encoding.Default.GetString(buffer );
//string clientCommand11 = System.Text.Encoding.GetEncoding("gb2312").GetString(buffer)
我用GB2312、UTF-8、UNICODE全试过了都是乱码,哪位大虾帮忙指点! 展开
3个回答
展开全部
在这里可以下到一个自动检测字节流编码的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";
}
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";
}
追问
不行哦,试过了,还是感谢你!呵呵
追答
还有。。。你保证你的数据包是文本可读的??比如说一个包
packet
{
byte tag;
byte[] data;
}
这个包是架在tcp/ip协议栈之上的,打个比方,如果对方传送了一个包:p.tag = 0xE0表示服务器端发送,然后data里面是加密后的数据,那你用什么编码去解析都白搭啊,直接分析包才行:
if (p.tag = 0xE0)
{
//做data的解密处理
}
在这种情况下,你要和对方联系,知道对方发送包的结构,不然的话就要去抓包,进行协议逆向了
展开全部
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发送的是什么编码的
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发送的是什么编码的
追问
主要的是目前跟其他公司做接口,问那些人说不知道。。。
有没有办法可以获取到字节数组的编码方式?
谢谢你的回答!
追答
最好能找到接口的dll,然后反编译下,看下接口方法是发的哪种编码
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
要保证发送和接受采用相同的编码格式。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询