Delphi XE10 IdTCPClient和IdTCPServer 通讯编码规则写法(Indy 10)(编码乱码)
2021-03-02 21:26
标签:示例 osd handler dia 初始化 cos connect cti 设置 Delphi XE10 IdTCPClient和IdTCPServer 通讯编码规则(Indy 10)(编码乱码) use IdGlobal IndyTextEncoding: // 以下是为了向后兼容过去的Indy 10版本 Delphi XE10 示例: 或者 IdTextEncodingType : 统一设置方式: 创建时间:2020.06.02 更新时间:2020.06.02 Delphi XE10 IdTCPClient和IdTCPServer 通讯编码规则写法(Indy 10)(编码乱码) 标签:示例 osd handler dia 初始化 cos connect cti 设置 原文地址:https://www.cnblogs.com/guorongtao/p/13029798.html
IdTCPClient1.IOHandler.WriteLn(MemoC1.Text,IndyTextEncoding_UTF8);
IdTCPClient1.IOHandler.WriteLn(MemoC1.Text,IndyTextEncoding(encUTF8));
//客户端初始化时设置DefStringEncoding
IdTCPClient1.IOHandler.DefStringEncoding := IndyTextEncoding_UTF8; //IndyTextEncoding(encUTF8)
//服务器Connect时
AContext.Connection.IOHandler.DefStringEncoding :=IndyTextEncoding_UTF8; //IndyTextEncoding(encUTF8)
下一篇:C#写文件
文章标题:Delphi XE10 IdTCPClient和IdTCPServer 通讯编码规则写法(Indy 10)(编码乱码)
文章链接:http://soscw.com/index.php/essay/59207.html