摘要: 添加: 自定义验证代码: public partial class SuperTextBox : TextBox { public SuperTextBox() { InitializeComponent(); } public SuperTextBox(IContainer container) 阅读全文
posted @ 2020-02-03 17:28 石shi 阅读(555) 评论(0) 推荐(0) 编辑
摘要: netty 使用 tcp/ip 协议传输数据。而 tcp/ip 协议是类似水流一样的数据传输方式。多次 访问的时候有可能出现数据粘包的问题,解决这种问题的方式如下: 定长数据流 客户端和服务器,提前协调好,每个消息长度固定。(如:长度 10)。如果客户端或服 务器写出的数据不足 10,则使用空白字符 阅读全文
posted @ 2020-02-03 16:22 石shi 阅读(533) 评论(0) 推荐(0) 编辑