asp.net中怎么接收和解析GPS终端发送的udp数据包
IPEndPoint RemoteIpEndPoint = new IPEndPoint(IPAddress.Any, 端口号);UdpClient uu = new UdpClient(RemoteIpEndPoint);Byte[] receiveBytes = uu.Receive(ref RemoteIpEndPoint);string value = Encoding.ASCII.GetString(receiveBytes);value 就是接收到的数据包。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我之所以活到现在的全部意义,是为了此刻能对你说,我爱你,我会在你身后永远守护你。
文章 0 评论 0
接受
发布评论
评论(1)
IPEndPoint RemoteIpEndPoint = new IPEndPoint(IPAddress.Any, 端口号);
UdpClient uu = new UdpClient(RemoteIpEndPoint);
Byte[] receiveBytes = uu.Receive(ref RemoteIpEndPoint);
string value = Encoding.ASCII.GetString(receiveBytes);
value 就是接收到的数据包。