我创建了一个发送 get server list 命令的客户端,但接收到的字节不可读。
这是我的代码:
byte[] receiveBytes = udp.Receive(ref RemoteIpEndPoint);
string[] returnData = Encoding.Default.GetString(udp.Receive(ref RemoteIpEndPoint)).Split('\\');
textBox1.Lines = returnData;
在当地人中,我看到了写入值
但是程序告诉我这个
有人可以告诉我我的代码有什么问题吗?
好的,我将代码更改为
yte[] receiveBytes = udp.Receive(ref RemoteIpEndPoint);
int size = receiveBytes.Length;
int i = 0;
while ( i <= size-5 )
{
string ip = receiveBytes[i] + "." + receiveBytes[i + 1] + "." + receiveBytes[i + 2] + "." + receiveBytes[i + 3] ;
int port = receiveBytes[i + 4] * 256 + receiveBytes[i + 5];
textBox1.Text += ip + ":" + port.ToString() + Environment.NewLine;
i = i + 6;
}
但收到的数据不对!
我在 php 上找到了微笑代码及其工作。
$data = explode("\\", $data);
for($i=0, $o=0; $i<count($data); $i++) {
if (strlen($data[$i])>=4) { //fix
// First 4 bytes are the ip:
$list_server[$o]['ip']=ord($data[$i][0]).".".ord($data[$i][1]).".".ord($data[$i][2]).".".ord($data[$i][3]);
// Last 2 bytes are the port, Takes penultimate number and multiply by 256 and sum with the last number:
$list_server[$o]['port']=(ord($data[$i][4])*256) + ord($data[$i][5]);
//GetName($list_server[$o]['ip'],$list_server[$o]['port']);
$o++;
}
}
我猜不出我的代码有什么问题。