M
Michaelzhao
Unregistered / Unconfirmed
GUEST, unregistred user!
vb.net 中 UDP_Client.Connect(IPAddress.Parse(Host), Port)
Dim sendBytes As [Byte]() = Encoding.Unicode.GetBytes(Data)
UDP_Client.Send(sendBytes, sendBytes.Length)
data是String类型 而在delphi7中用了TNmUdp控件,udp.readbuffer(Rbuff,Numberbytes) Rbuff为 Array[1..256] of char 读出来是字符,
如vb.net中发送ok,在delphi7中接收为o#0k#0 中文也是unicode字符,请问如何转换
才能接收为ok
Dim sendBytes As [Byte]() = Encoding.Unicode.GetBytes(Data)
UDP_Client.Send(sendBytes, sendBytes.Length)
data是String类型 而在delphi7中用了TNmUdp控件,udp.readbuffer(Rbuff,Numberbytes) Rbuff为 Array[1..256] of char 读出来是字符,
如vb.net中发送ok,在delphi7中接收为o#0k#0 中文也是unicode字符,请问如何转换
才能接收为ok