.net 中使用socket (c#)

前几天在网上看到关于使用socket 编写聊天程序的一个例子,学习了一下,网上的例子是VB.NET的,自己改写成了C#的 大同小异,只作为记录 :

发送端
================================
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace CSClientTest
{
     ///<summary>
     /// sendform 的摘要说明。
     ///</summary>
     public class sendform : System.Windows.Forms.Form
     {
         private System.Windows.Forms.TextBox textBox1;
         private System.Windows.Forms.Button button1;
         private System.Windows.Forms.Label label1;
         ///<summary>
         ///必需的设计器变量。
         ///</summary>
         private System.ComponentModel.Container components = null;
         public sendform()
         {
              //
              // Windows 窗体设计器支持所必需的
              //
              InitializeComponent();
              //
              // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
              //
         }
         ///<summary>
         ///清理所有正在使用的资源。
         ///</summary>
         protected override void Dispose( bool disposing )
         {
              if( disposing )
              {
                   if(components != null)
                   {
                       components.Dispose();
                   }
              }
              base.Dispose( disposing );
         }
         #region Windows 窗体设计器生成的代码
         ///<summary>
         ///设计器支持所需的方法 - 不要使用代码编辑器修改
         ///此方法的内容。
         ///</summary>
         private void InitializeComponent()
         {
              this.textBox1 = new System.Windows.Forms.TextBox();
              this.button1 = new System.Windows.Forms.Button();
              this.label1 = new System.Windows.Forms.Label();
              this.SuspendLayout();
              //
              // textBox1
              //
              this.textBox1.Location = new System.Drawing.Point(96, 144);
              this.textBox1.Name = "textBox1";
              this.textBox1.Size = new System.Drawing.Size(200, 21);
              this.textBox1.TabIndex = 0;
              this.textBox1.Text = "";
              //
              // button1
              //
              this.button1.Location = new System.Drawing.Point(320, 144);
              this.button1.Name = "button1";
              this.button1.TabIndex = 1;
              this.button1.Text = "sender";
              this.button1.Click += new System.EventHandler(this.button1_Click);
              //
              // label1
              //
              this.label1.Location = new System.Drawing.Point(0, 0);
              this.label1.Name = "label1";
              this.label1.Size = new System.Drawing.Size(608, 112);
              this.label1.TabIndex = 2;
              //
              // sendform
              //
              this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
              this.ClientSize = new System.Drawing.Size(616, 238);
              this.Controls.Add(this.label1);
              this.Controls.Add(this.button1);
              this.Controls.Add(this.textBox1);
              this.Name = "sendform";
              this.Text = "sendform";
              this.Load += new System.EventHandler(this.sendform_Load);
              this.ResumeLayout(false);
         }
         #endregion
         private void sendform_Load(object sender, System.EventArgs e)
         {
             
         }
         private void button1_Click(object sender, System.EventArgs e)
         {
              //定义一个socket对象
              System.Net.Sockets.Socket socket= new System.Net.Sockets.Socket(System.Net.Sockets.AddressFamily.InterNetwork,System.Net.Sockets.SocketType.Stream,System.Net.Sockets.ProtocolType.Tcp);
             
              //定义一个字节数组
              byte[] b = new byte[1024];
             
              //从文本框中获得数据转换为字节数组后存入b
              b=System.Text.Encoding.UTF8.GetBytes(textBox1.Text);
             
              //定义目的端的IP和端口
              System.Net.IPEndPoint ep = new System.Net.IPEndPoint(System.Net.IPAddress.Parse("127.0.0.1"),1022);
              try
              {
                   //连接到目的端
                   socket.Connect(ep);
                   //用socket的send方法发送数据,该方法返回发送的数据的字节数
                   label1.Text="数据已发送,总共:"+socket.Send(b).ToString()+"字节";
                  
                   //禁止并关闭socket
                   socket.Shutdown(System.Net.Sockets.SocketShutdown.Both);
                   socket.Close();
              }
              catch(System.Exception ex)
              {
                   label1.Text=ex.Message.ToString();
              }
         }
     }
}
接收端
================================
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace CSClientTest
{
     ///<summary>
     /// receive 的摘要说明。
     ///</summary>
     public class receive : System.Windows.Forms.Form
     {
         private System.Windows.Forms.Button button1;
         private System.Windows.Forms.TextBox textBox1;
         ///<summary>
         ///必需的设计器变量。
         ///</summary>
         private System.ComponentModel.Container components = null;
         //定义一个全局的socket以便监听和接收数据
         System.Net.Sockets.Socket socket = new System.Net.Sockets.Socket(System.Net.Sockets.AddressFamily.InterNetwork,System.Net.Sockets.SocketType.Stream,System.Net.Sockets.ProtocolType.Tcp);
         public receive()
         {
              //
              // Windows 窗体设计器支持所必需的
              //
              InitializeComponent();
              //
              // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
              //
         }
         ///<summary>
         ///清理所有正在使用的资源。
         ///</summary>
         protected override void Dispose( bool disposing )
         {
              if( disposing )
              {
                   if(components != null)
                   {
                       components.Dispose();
                   }
              }
              base.Dispose( disposing );
         }
         #region Windows 窗体设计器生成的代码
         ///<summary>
         ///设计器支持所需的方法 - 不要使用代码编辑器修改
         ///此方法的内容。
         ///</summary>
         private void InitializeComponent()
         {
              this.button1 = new System.Windows.Forms.Button();
              this.textBox1 = new System.Windows.Forms.TextBox();
              this.SuspendLayout();
              //
              // button1
              //
              this.button1.Location = new System.Drawing.Point(448, 184);
              this.button1.Name = "button1";
              this.button1.TabIndex = 0;
              this.button1.Text = "接受";
              this.button1.Click += new System.EventHandler(this.button1_Click);
              //
              // textBox1
              //
              this.textBox1.Location = new System.Drawing.Point(224, 184);
              this.textBox1.Name = "textBox1";
              this.textBox1.Size = new System.Drawing.Size(208, 21);
              this.textBox1.TabIndex = 1;
              this.textBox1.Text = "";
              //
              // receive
              //
              this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
              this.ClientSize = new System.Drawing.Size(664, 266);
              this.Controls.Add(this.textBox1);
              this.Controls.Add(this.button1);
              this.Name = "receive";
              this.Text = "receive";
              this.Load += new System.EventHandler(this.receive_Load);
              this.ResumeLayout(false);
         }
         #endregion
         private void receive_Load(object sender, System.EventArgs e)
         {
              //定义本地接收端IP和端口
              System.Net.IPEndPoint ep = new System.Net.IPEndPoint(System.Net.IPAddress.Parse("127.0.0.1"),1022);
             
              //socket绑定本地接收端
              socket.Bind(ep);
              //监听,监听挂起10
              socket.Listen(10);
         }
         private void button1_Click(object sender, System.EventArgs e)
         {
              try
              {
                   if(socket.Blocking)
                   {
                       //为新建连接创建新的 Socket
                       System.Net.Sockets.Socket socket1=socket.Accept();
                       //定义一个字节数组
                       byte[] b = new byte[1024];
             
                       //将接收到的字节数组存入b中
                       socket1.Receive(b);
                       //将B中的数据转换为字符串后显示到textbox
                       textBox1.Text = System.Text.Encoding.UTF8.GetString(b);
                       //禁止并关闭这个新的socket连接
                       socket1.Shutdown(System.Net.Sockets.SocketShutdown.Both);
                       socket1.Close();
                   }
              }
              catch
              {
                   textBox1.Text = "无数据";
              }
         }
        
     }
}

转载于:https://www.cnblogs.com/ZetaChow/archive/2006/07/03/2237425.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/497293.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Replace Type Code with State/Strategy(以State/Strategy取代类型码)

有一个类型码&#xff0c;它会影响类的行为&#xff0c;但你无法通过继承消除它 public class Employee {static final int ENGINNER 0;static final int SALESMAN 1;static final int MANAGER 2;private int type;// 月薪.private int montylySalary;// 佣金.private int c…

MSRA副院长周明博士:四大研究领域揭示自然语言技术的奥秘

来源&#xff1a;AI科技评论概要&#xff1a;自然语言理解处在认知智能最核心的地位。比尔盖茨曾说过&#xff0c;「语言理解是人工智能皇冠上的明珠」&#xff0c;沈向洋博士也说过「懂语言者得天下」。自然语言理解处在认知智能最核心的地位。它的进步会引导知识图谱的进步&a…

net中的调试javascript脚本

怎样对.net中的javascript脚本进行调试&#xff1f;第一步&#xff1a;在IE的“Internet设置”中选择“高级”——“安全”——“启用集成windows身份验证”(这一步很重要!!!)第二步&#xff1a;同样在“Internet设置”中把“禁止脚本调试”的勾去掉第三步&#xff1a;用调试模…

ajax将响应结果显示到iframe,JavaScript:iframe / Ajax / JSON

iframe在Ajax流行之前大量使用&#xff1a;iframe中的src属性指定的就是一个独立的页面url地址&#xff0c;iframe中呈现的就是这个页面的内容。通过改变src的值&#xff0c;我们就可以轻松的改变iframe中的内容(类似的&#xff0c;刷新验证码也是同样的手段)&#xff1a;docum…

Decompose Conditional(分解条件表达式)

有一个复杂的 if-else 语句 if (date.before(SUMMER_START) || date.after(SUMMER_END)) {charge quantity * winterRate winterServiceCharge; } else {charge quantity * summerRate; } 重构&#xff1a; 从if-else 中分别提炼出独立函数 if (notSummer(date)) {charge…

2018 AI 产品趋势:喧嚣的追风者和静默的收割人

来源&#xff1a;36氪毫无疑问&#xff0c;在消费科技品领域&#xff0c;AI产品有泡沫。故事要从2014年说起。那一年底&#xff0c;亚马逊低调发布了智能音箱Echo&#xff0c;苹果发布了第一代Apple Watch智能手表。比起AI浪潮&#xff0c;那个时候大家谈论更多&#xff0c;是智…

基于Ajax的应用程序架构汇总(三)

3 服务器端&#xff1a;多种语言 3.1 跨平台异步的接口工具箱(5月2005年) CPAINT&#xff1a;http://cpaint.sourceforge.net/&#xff0c;是一真正的支持PHP和ASP/Vbscript的Ajax实现和JSRS(JavaScript远程脚本)实现。CPAINT提供给你需求的代码在后台实现AJAX和JSRS&#xff0…

ftp服务器需要什么系统,ftp服务器需要什么系统

ftp服务器需要什么系统 内容精选换一换单独购买的云硬盘为数据盘&#xff0c;可以在云硬盘列表中看到磁盘属性为“数据盘”&#xff0c;磁盘状态为“可用”。此时需要将该数据盘挂载给云服务器使用。系统盘必须随云服务器一同购买&#xff0c;并且会自动挂载&#xff0c;可以在…

3D 鼠标跟随脚本详解

请大家先看右边的动画演示。这个动画就是由 jimbob 制作的&#xff0c;您可以到这里来下载这个动画的原始文件。下面请看他的详细解释&#xff1a; If Frame Is Loaded ("end")Go to and Play ("start")End Frame Loaded initalise:Comment: Comment: 初始…

重磅 | MIT启动IQ计划:研究人类智能,让全世界的机构共同合作

作者&#xff1a;思颖概要&#xff1a;当地时间 2 月 1 日&#xff0c;MIT 宣布启动 MIT Intelligence Quest&#xff08;智能探索&#xff09;计划&#xff0c;该项计划旨在助力人类智能的基础研究&#xff0c;推动能造福于社会的技术工具的发展。据悉&#xff0c;该项声明由 …

risc系统服务器,精简的高端 解析四大RISC服务器处理器

也许您很难相信&#xff0c;作为我们今天仍在广泛使用的诸如“扣肉”之类的最新双核乃至是CPU(Center Prosessing Unit中央处理器)&#xff0c;都是基于始创在上世纪60年代的CISC指令集&#xff0c;距今已有四十多年了。CISC是英文“Complex Instruction Set Computer”的缩写&…

Consolidate Conditional Expression(合并条件表达式)

有一系列条件测试&#xff0c;都得到相同结果 private double disabilityAmount() {if (seniority < 2) return 0;if (monthsDisabled > 2) return 0;if (isPartTime) return 0;// ... } 重构&#xff1a;将这些条件测试合并为一个条件表达式&#xff0c;并提炼为一个独…

梅露可物语虚拟服务器,【图片】【萌新】主界面的使用方法(零基础版)【梅露可物语日服吧】_百度贴吧...

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼那下面主要讲讲梅露可的货币们&#xff1a;1、 钻石&#xff1a;钻石的主要用途有三个。一、抽抽抽&#xff01;二、碎了这个钻来回复你的ap。三、战斗时候被人打败了有时可以用钻石复活。不过第三个基本是都不用的&#xff0c;因为…

北京发自动驾驶车辆考试大纲 难度堪比普通人考驾照

来源&#xff1a;新京报概要&#xff1a;自《加快推进自动驾驶车辆道路测试有关工作的指导意见》发布以来&#xff0c;北京进一步为自动驾驶车辆明确其性能测试与实际道路测试的“考试大纲”。自《加快推进自动驾驶车辆道路测试有关工作的指导意见》发布以来&#xff0c;北京进…

免费 Flash 留言板 -Powered by Kong

-----点击预览------新开窗口地址&#xff1a;http://iamkong.com/bord/bord.html重点*在FLASH load数据库数据&#xff0c;以及留言Post数据库这是FLASH与外面数据交互的方法之一 >点击下载{white白色}>点击下载{black 黑色}点击下载FLA源文件转载于:https://www.cnblog…

Consolidate Duplicate Conditional Fragments(合并重复的条件片段)

在条件表达式的每个分支上有相同的一段代码 if (isSpecialDeal()) {total price * 0.95;send(); } else {total price * 0.98;send(); } 重构&#xff1a;将这段重复代码搬移到条件表达式之外 if (isSpecialDeal()) {total price * 0.95; } else {total price * 0.98; }…

普华永道2030汽车产业报告 私家车真正Out了!

来源&#xff1a;智东西概要&#xff1a;随着新兴科技渗透汽车产业&#xff0c;电动化、智能化、共享化等趋势愈演愈烈。随着新兴科技渗透汽车产业&#xff0c;电动化、智能化、共享化等趋势愈演愈烈。科技企业、新造车企业杀入传统价值链&#xff0c;业界称之为汽车产业变革。…

C++学习之路 | PTA乙级—— 1001 害死人不偿命的(3n+1)猜想 (15分)(精简)

1001 害死人不偿命的(3n1)猜想 (15分) 卡拉兹(Callatz)猜想&#xff1a; 对任何一个正整数 n&#xff0c;如果它是偶数&#xff0c;那么把它砍掉一半&#xff1b;如果它是奇数&#xff0c;那么把 (3n1) 砍掉一半。这样一直反复砍下去&#xff0c;最后一定在某一步得到 n1。卡拉…

[转] TOUGH 的系列平面广告

转载于:https://www.cnblogs.com/temptation/archive/2006/08/09/471863.html

未来网络经济的99个趋势报告

来源&#xff1a; 199IT互联网数据中心概要&#xff1a;未来网络经济的99个趋势报告72%的全球CEO认为未来3年将比过去50年对其行业的影响更大&#xff1b;到2020年&#xff0c;平均每个人都会比与机器人有更多的对话&#xff1b;创新品牌的品牌价值升值比没有那么创新的品牌高9…