程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> c#winform socket網絡編程,點對點傳輸文件,socket文件傳輸,監聽端口

c#winform socket網絡編程,點對點傳輸文件,socket文件傳輸,監聽端口

編輯:C#入門知識

服務器用來接收文件,不停的監聽端口,有發送文件就馬上開始接收文件
服務端代碼:

 

  • 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;   
  • using System.Threading;   
  • using System.Net.Sockets;   
  •   
  • using System.IO;   
  •   
  • namespace TestSocketServerHSTF   
  • {   
  •     public partial class Form1 : Form   
  •     {   
  •         public Form1()   
  •         {   
  •             InitializeComponent();   
  •   
  •   
  •             //不顯示出dataGridView1的最後一行空白   
  •             dataGridView1.AllowUserToAddRows = false;   
  •         }  
  •  
  •  
  •         #region 定義變量  
  •  
  •  
  •         #endregion  
  •  
  •  
  •  
  •         #region 進入窗體即啟動服務   
  •   
  •         private void Form1_Load(object sender, EventArgs e)   
  •         {   
  •             //開啟接收線程   
  •             Thread TempThread = new Thread(new ThreadStart(this.StartReceive));   
  •             TempThread.Start();   
  •         }  
  •  
  •           
  •         #endregion  
  •  
  •  
  •  
  •  

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved