c#实现socket传输简单数据_c#应用

2008-02-23 05:41:56来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

运行程式后, 先要点击开始接收按钮后才能点击发送数据

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#应用