中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何進行C#網絡編程客戶端程序的實現源碼分析

發布時間:2021-11-24 09:12:10 來源:億速云 閱讀:158 作者:柒染 欄目:編程語言

本篇文章給大家分享的是有關如何進行C#網絡編程客戶端程序的實現源碼分析,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

C#網絡編程客戶端程序實現是如何辦到的呢?由于在客戶端不需要偵聽網絡,所以在調用上面沒有程序阻塞情況,所以在下面的代碼中,我們沒有使用到線程,這是和服務器端程序的一個區別的地方。總結上面的這些關鍵步驟,可以得到一個用C#網絡編程客戶端程序,具體如下:

//C#網絡編程客戶端程序  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 ;  //C#網絡編程客戶端程序  //導入程序中使用到的名字空間  public class Form1 : Form  {  private ListBox ListBox1 ;  private Label label1 ;  private TextBox textBox1 ;  private Button button3 ;  private NetworkStream networkStream ;  private StreamReader streamReader ;  private StreamWriter streamWriter ;  TcpClient myclient ;  private Label label2 ;  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 ( ) ;  button3 = new Button ( ) ;  ListBox1 = new ListBox ( ) ;  textBox1 = new TextBox ( ) ;  label2 = new Label ( ) ;  SuspendLayout ( ) ;  label1.Location = new Point ( 8 , 168 ) ;  label1.Name = "label1" ;  label1.Size = new Size ( 56 , 23 ) ;  label1.TabIndex = 3 ;  label1.Text = "信息:" ;  //C#網絡編程客戶端程序  //同樣方法設置其他控件  AutoScaleBaseSize = new Size ( 6 , 14 ) ;  ClientSize = new Size ( 424 , 205 ) ;  this.Controls.Add ( button3 ) ;  this.Controls.Add ( textBox1 ) ;  this.Controls.Add ( label1 ) ;  this.Controls.Add ( label2 ) ;  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 ) ;  //連接到服務器端口,在這里是選用本地機器作為服務器,  //你可以通過修改IP地址來改變服務器  try {  myclient = new TcpClient ( "localhost" , 1234 ) ;  }  catch {  MessageBox.Show ( "沒有連接到服務器!" ) ;  return ;  }  //C#網絡編程客戶端程序  //創建networkStream對象通過網絡套節字來接受和發送數據  networkStream = myclient.GetStream ( ) ;  streamReader = new StreamReader ( networkStream ) ;  streamWriter = new StreamWriter ( networkStream ) ;  }  static void Main ( )  {  Application.Run ( new Form1 ( ) ) ;  }  private void button3_Click (   object sender , System.EventArgs e )  {  if ( textBox1.Text == "" )  {  MessageBox.Show ( "請確定文本框為非空!" ) ;  textBox1.Focus ( ) ;  return ;  }  try {  string s ;  //往當前的數據流中寫入一行字符串  streamWriter.WriteLine ( textBox1.Text ) ;  //刷新當前數據流中的數據  streamWriter.Flush ( ) ;  //從當前數據流中讀取一行字符,返回值是字符串  s = streamReader.ReadLine ( ) ;  ListBox1.Items.Add ( "讀取服務器端發送內容:" + s ) ;  }  //C#網絡編程客戶端程序  catch ( Exception ee )  {  MessageBox.Show (   "從服務器端讀取數據出現錯誤,類型為:" +   ee.ToString ( ) ) ;  }  }  private void Form1_Closed ( object sender ,   System.EventArgs e )  {  streamReader.Close ( ) ;  streamWriter.Close ( ) ;  networkStream.Close ( ) ;  }  }

以上就是如何進行C#網絡編程客戶端程序的實現源碼分析,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

德庆县| 钦州市| 望江县| 德保县| 云安县| 滦平县| 望江县| 嘉义县| 武陟县| 南皮县| 永泰县| 凉城县| 湘乡市| 宁晋县| 宣城市| 揭西县| 奇台县| 永年县| 芜湖县| 醴陵市| 镇江市| 卢氏县| 玉山县| 乐清市| 霍州市| 望都县| 嘉峪关市| 玛曲县| 博白县| 都昌县| 新民市| 永吉县| 淳化县| 太和县| 叶城县| 蓝山县| 海兴县| 建阳市| 崇文区| 蒙阴县| 长宁县|