procedure TForm1.SpeedButton1Click(Sender: TObject);
begin
udp.Send('localhost', 1234, 'abc123'); // 发送字符, 这样发中文接收方会乱码
end; procedure TForm1.SpeedButton2Click(Sender: TObject);
var
b: TBytes;
s: string;
begin
s := '你好';
b := BytesOf(s);
udp.SendBuffer('localhost', 1234, TIdBytes(b)); // TIdBytes要引用IdGlobal.pas单元
end;
相关文章
- AJAX案例一:发送POST请求
- 常用的正则表达式(例如:匹配中文、匹配html)(转载)
- Atitit.url 汉字中文路径 404 resin4 resin 解决 v2 q329
- 后端接收不到AngularJs中$http.post发送的数据的问题
- ActionScript接收socket服务器发送来的数据
- UDP-C#代码
- WinForm 进程、线程、TreeView递归加载、发送邮件--2016年12月13日
- Android 倒计时按钮,倒计时发送短信验证码…
- [原创] zabbix学习之旅六:如何解决zabbix server在内网,而邮件发送服务器在外网的问题
- Sphinx + Coreseek 实现中文分词搜索