c#实现socket传输简单数据_c#应用
2008-02-23 05:41:56来源:互联网 阅读 ()
运行程式后, 先要点击开始接收按钮后才能点击发送数据
Form1.cs代码如下
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Net.Sockets;
using System.IO;
using System.Net;
namespace WinSocket
...{
public partial class Form1 : Form
...{
BackgroundWorker bgWorker = null;
public Form1()
...{
InitializeComponent();
bgWorker = new BackgroundWorker();
bgWorker.WorkerSupportsCancellation = true;
this.AddEvent();
}
/**//// <summary>
/// 注册事件
/// </summary>
private void AddEvent()
...{
this.bgWorker.DoWork = new DoWorkEventHandler(bgWorker_DoWork);
this.btnSend.Click = new EventHandler(btnSend_Click);
this.btnStartReceive.Click = new EventHandler(btnStartReceive_Click);
this.btnStopRecevie.Click = new EventHandler(btnStopRecevie_Click);
}
void bgWorker_DoWork(object sender, DoWorkEventArgs e)
...{
Socket receiveSocket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
IPEndPoint endpoint = new IPEndPoint(0, 8000);
receiveSocket.Bind(endpoint);
receiveSocket.Listen(10);
try
...{
while (true)
...{
Socket tmpSocket = receiveSocket.Accept();
byte[] buffer = new byte[tmpSocket.ReceiveBufferSize];
if (tmpSocket.Receive(buffer) > 0)
...{
textBox2.Text = Encoding.UTF8.GetString(buffer) Environment.NewLine;
}
else
...{
System.Threading.Thread.Sleep(1000);
}
}
}
catch(Exception err)
...{
MessageBox.Show(err.Message);
}
}
void btnStopRecevie_Click(object sender, EventArgs e)
...{
if (this.bgWorker.IsBusy)
...{
this.bgWorker.CancelAsync();
this.btnStartReceive.Enabled = true;
this.btnStopRecevie.Enabled = false;
}
}
void btnStartReceive_Click(object sender, EventArgs e)
...{
this.btnStartReceive.Enabled = false;
this.bgWorker.RunWorkerAsync();
this.btnStopRecevie.Enabled = true;
}
void btnSend_Click(object sender, EventArgs e)
...{
Socket sendSocket = new Socket( AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
sendSocket.Connect("187.186.0.63", 8000);
byte[] buffer = Encoding.UTF8.GetBytes(textBox1.Text);
sendSocket.Send(buffer);
sendSocket.Shutdown(SocketShutdown.Both);
sendSocket.Close();
}
private void Form1_Load(object sender, EventArgs e)
...{
this.btnStartReceive.Enabled = true;
this.btnStopRecevie.Enabled = false;
}
}
}
Form.Designer.cs代码如下
namespace WinSocket
...{
partial class Form1
...{
/**//// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/**//// <summary>
/// 清理任何正在使用的资源。
/// </summary>
/// <param name="disposing">假如应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
...{
if (disposing && (components != null))
...{
components.Dispose();
}
base.Dispose(disposing);
}
Windows 窗体设计器生成的代码#region Windows 窗体设计器生成的代码
/**//// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
...{
this.btnSend = new System.Windows.Forms.Button();
this.textBox1 = new System.Windows.Forms.TextBox();
this.textBox2 = new System.Windows.Forms.TextBox();
this.btnStartReceive = new System.Windows.Forms.Button();
this.btnStopRecevie = new System.Windows.Forms.Button();
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇: c#中接口的深入浅出_c#应用
下一篇: c# 存取数据库中的图像_c#应用
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash