C#网络编程服务器端程序实现源码浅析

开发 后端
C#网络编程服务器端程序实现源码向你介绍了用结构是异步阻塞方式下的程序实现,希望对你了解和学习C#网络编程服务器端程序有所帮助。

C#网络编程服务器端程序实现源码是怎么样的呢?让我们来看看其中重要的一部分:

由于在此次程序中我们采用的结构是异步阻塞方式,所以在实际的程序中,为了不影响服务器端程序的运行速度,我们在程序中设计了一个线程,使得对网络请求侦听,接受和发送数据都在线程中处理,请在下面的代码中注意这一点,下面是C#网络编程服务器端程序的完整代码:

//server.cs  
using System ;  
using System.Drawing ;  
using System.Collections ;  
using System.ComponentModel ;  
using System.Windows.Forms ;  
using System.Data ;  
using System.Net.Sockets ;  
using System.IO ;  
using System.Threading ;  
using System.Net ;  
//C#网络编程服务器端程序  
//导入程序中使用到的名字空间  
public class Form1 : Form  
{  
private ListBox ListBox1 ;  
private Button button2 ;  
private Label label1 ;  
private TextBox textBox1 ;  
private Button button1 ;  
private Socket socketForClient ;  
private NetworkStream networkStream ;  
private TcpListener tcpListener ;  
private StreamWriter streamWriter ;  
private StreamReader streamReader ;  
private Thread _thread1 ;  
private System.ComponentModel.Container components = null ;  
public Form1 ( )  
{  
InitializeComponent ( ) ;  
}  
//C#网络编程服务器端程序  
//清除程序中使用的各种资源  
protected override void Dispose ( bool disposing )  
{  
if ( disposing )  
{  
if ( components != null )  
{  
components.Dispose ( ) ;  
}  
}  
base.Dispose ( disposing ) ;  
}  
private void InitializeComponent ( )  
{  
label1 = new Label ( ) ;  
button2 = new Button ( ) ;  
button1 = new Button ( ) ;  
ListBox1 = new ListBox ( ) ;  
textBox1 = new TextBox ( ) ;  
SuspendLayout ( ) ;  
label1.Location = new Point ( 8 , 168 ) ;  
label1.Name = "label1" ;  
label1.Size = new Size ( 120 , 23 ) ;  
label1.TabIndex = 3 ;  
label1.Text = "往客户端反馈信息:" ;  
//C#网络编程服务器端程序  
//同样的方式设置其他控件,这里略去  
this.Controls.Add ( button1 ) ;  
this.Controls.Add ( textBox1 ) ;  
this.Controls.Add ( label1 ) ;  
this.Controls.Add ( button2 ) ;  
this.Controls.Add ( ListBox1 ) ;  
this.MaximizeBox = false ;  
this.MinimizeBox = false ;  
this.Name = "Form1" ;  
this.Text = "C#的网络编程服务器端!" ;  
this.Closed += new System.EventHandler ( this.Form1_Closed ) ;  
this.ResumeLayout ( false ) ;  
}  
private void Listen ( )  
{  
//C#网络编程服务器端程序  
//创建一个tcpListener对象,此对象主要是对给定端口进行侦听  
tcpListener = new TcpListener ( 1234 ) ;  
//开始侦听  
tcpListener.Start ( ) ;  
//返回可以用以处理连接的Socket实例  
socketForClient = tcpListener.AcceptSocket ( ) ;  
try 
{  
//如果返回值是"true",则产生的套节字已经接受来自远方的连接请求  
if ( socketForClient.Connected )  
{  
ListBox1.Items.Add ( "已经和客户端成功连接!" ) ;  
while ( true )  
{  
//创建networkStream对象通过网络套节字来接受和发送数据  
networkStream = new NetworkStream ( socketForClient ) ;  
//从当前数据流中读取一行字符,返回值是字符串  
streamReader = new StreamReader ( networkStream ) ;  
string msg = streamReader.ReadLine ( ) ;  
ListBox1.Items.Add ( "收到客户端信息:" + msg ) ;  
streamWriter = new StreamWriter ( networkStream ) ;  
if ( textBox1.Text != "" )  
{  
ListBox1.Items.Add ( "往客户端反馈信息:" +   
textBox1.Text ) ;  
//往当前的数据流中写入一行字符串  
streamWriter.WriteLine ( textBox1.Text ) ;  
//刷新当前数据流中的数据  
//C#网络编程服务器端程序  
streamWriter.Flush ( ) ;  
}  
}  
}  
}  
catch ( Exception ey )  
{  
MessageBox.Show ( ey.ToString ( ) ) ;  
}  
}  
static void Main ( )  
{  
Application.Run ( new Form1 ( ) ) ;  
}  
private void button1_Click ( object sender ,  
 System.EventArgs e )  
{  
ListBox1.Items .Add ( "服务已经启动!" ) ;  
_thread1 = new Thread ( new ThreadStart ( Listen ) ) ;  
_thread1.Start ( ) ;  
}  
private void button2_Click ( object sender ,  
 System.EventArgs e )  
{  
//C#网络编程服务器端程序  
//关闭线程和流  
networkStream.Close ( ) ;  
streamReader.Close ( ) ;  
streamWriter.Close ( ) ;  
_thread1.Abort ( ) ;  
tcpListener.Stop ( ) ;  
socketForClient.Shutdown ( SocketShutdown.Both ) ;  
socketForClient.Close ( ) ;  
}  
private void Form1_Closed ( object sender ,  
 System.EventArgs e )  
{  
//C#网络编程服务器端程序  
//关闭线程和流  
networkStream.Close ( ) ;  
streamReader.Close ( ) ;  
streamWriter.Close ( ) ;  
_thread1.Abort ( ) ;  
tcpListener.Stop ( ) ;  
socketForClient.Shutdown ( SocketShutdown.Both ) ;  
socketForClient.Close ( ) ;  
}  

  • 1.
  • 2.
  • 3.
  • 4.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29.
  • 30.
  • 31.
  • 32.
  • 33.
  • 34.
  • 35.
  • 36.
  • 37.
  • 38.
  • 39.
  • 40.
  • 41.
  • 42.
  • 43.
  • 44.
  • 45.
  • 46.
  • 47.
  • 48.
  • 49.
  • 50.
  • 51.
  • 52.
  • 53.
  • 54.
  • 55.
  • 56.
  • 57.
  • 58.
  • 59.
  • 60.
  • 61.
  • 62.
  • 63.
  • 64.
  • 65.
  • 66.
  • 67.
  • 68.
  • 69.
  • 70.
  • 71.
  • 72.
  • 73.
  • 74.
  • 75.
  • 76.
  • 77.
  • 78.
  • 79.
  • 80.
  • 81.
  • 82.
  • 83.
  • 84.
  • 85.
  • 86.
  • 87.
  • 88.
  • 89.
  • 90.
  • 91.
  • 92.
  • 93.
  • 94.
  • 95.
  • 96.
  • 97.
  • 98.
  • 99.
  • 100.
  • 101.
  • 102.
  • 103.
  • 104.
  • 105.
  • 106.
  • 107.
  • 108.
  • 109.
  • 110.
  • 111.
  • 112.
  • 113.
  • 114.
  • 115.
  • 116.
  • 117.
  • 118.
  • 119.
  • 120.
  • 121.
  • 122.
  • 123.
  • 124.
  • 125.
  • 126.
  • 127.
  • 128.
  • 129.
  • 130.
  • 131.
  • 132.
  • 133.
  • 134.
  • 135.
  • 136.
  • 137.
  • 138.
  • 139.
  • 140.
  • 141.
  • 142.
  • 143.
  • 144.
  • 145.
  • 146.
  • 147.
  • 148.
  • 149.
  • 150.
  • 151.

C#网络编程服务器端程序的实现源码就向你介绍到这里,希望对你了解和学习C#网络编程服务器端程序有所帮助。

【编辑推荐】

  1. C#客户端程序实现同步传输字符串浅析
  2. ASP.NET异步回调浅析
  3. ASP.NET异步回调开发实例浅析
  4. C#网络编程入门基础知识浅析
  5. C#网络编程服务器端程序设计浅析
责任编辑:仲衡 来源: 天极网
相关推荐

2009-08-21 17:33:34

服务器端程序C#网络编程

2009-08-21 17:53:25

C#网络编程客户端程序

2009-08-21 14:34:34

C#服务器端表达式

2015-10-27 09:40:31

TCPIP网络协议

2009-08-21 17:48:43

C#网络编程

2010-10-15 08:57:15

PHP多进程

2012-05-07 13:55:41

JavaJava Web

2009-08-21 16:27:44

C#服务端程序

2009-08-21 15:36:41

服务端与客户端

2011-07-26 11:07:08

JavaScript

2020-06-02 14:57:06

Linux服务器架构

2012-10-15 13:40:15

IBMdw

2009-08-21 14:03:04

C#网络编程

2009-08-21 15:22:56

端口侦听

2010-08-30 13:58:43

服务器端数据库

2009-08-14 11:00:16

C#创建Windows

2014-01-15 10:06:30

vFlash

2009-08-28 16:03:15

C#程序实现鼠标移动

2013-04-09 12:18:45

socket.ioC服务器

2009-08-21 14:50:50

C#下MySQL连接字
点赞
收藏

51CTO技术栈公众号