C#使用Socket實現(xiàn)發(fā)送和接收圖片的方法
更新時間:2015年04月02日 12:15:54 作者:令狐不聰
這篇文章主要介紹了C#使用Socket實現(xiàn)發(fā)送和接收圖片的方法,涉及C#操作socket發(fā)送與接收文件的使用技巧,具有一定參考借鑒價值,需要的朋友可以參考下
本文實例講述了C#使用Socket實現(xiàn)發(fā)送和接收圖片的方法。分享給大家供大家參考。具體如下:
using System;
using System.Collections.Generic;
using System.Text;
using System.Net.Sockets;
using System.Net;
using System.IO;
namespace ConsoleApplication1
{
Class Program
{
static void Main (String[] args)
{
// 1. to create a socket
Socket sListen = new Socket (AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
// 2. Fill IP
IPAddress IP = IPAddress.Parse ("127.0.0.1");
IPEndPoint IPE = new IPEndPoint (IP, 4321);
// 3. binding
sListen.Bind (IPE);
// 4. Monitor
Console.WriteLine ("Service is listening ...");
sListen.Listen (2);
// 5. loop to accept client connection requests
while (true)
{
Socket clientSocket;
try
{
clientSocket = sListen.Accept ();
}
catch
{
throw;
}
// send data to the client
//clientSocket.Send (Encoding.Unicode.GetBytes ("I am a server, you there?? !!!!"));
// send the file
byte[] buffer = ReadImageFile ("1.jpg");
clientSocket.Send (buffer, buffer.Length, SocketFlags.None);
Console.WriteLine ("Send success!");
}
}
private static byte[] ReadImageFile (String img)
{
FileInfo fileinfo = new FileInfo (img);
byte[] buf = new byte[fileInfo.Length];
FileStream fs = new FileStream (img, FileMode.Open, FileAccess.Read);
fs.Read (buf, 0, buf.Length);
fs.Close ();
//fileInfo.Delete ();
GC.ReRegisterForFinalize (fileinfo);
GC.ReRegisterForFinalize (fs);
return buf;
}
}
}
客戶端接收和保存圖片的代碼如下:
using System;
using System.Collections.Generic;
using System.Text;
using System.Net.Sockets;
using System.Net;
using System.IO;
namespace ConsoleApplication2
{
Class Program
{
static void Main (String[] args)
{
// 1. to create a socket
Socket S = new Socket (AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
// 2. fill in the remote IP
IPAddress IP = IPAddress.Parse ("127.0.0.1");
IPEndPoint IPE = new IPEndPoint (IP, 4321);
Console.WriteLine ("started connection service ....");
// 3. connect to the server
s.Connect (IPE);
// 4. receive data
byte[] buffer = new byte[1000000];
s.Receive (buffer, buffer.Length, SocketFlags.None);
//var Msg = Encoding.Unicode.GetString (buffer);
//Console.WriteLine ("received message: (0)", msg);
Console.WriteLine ("Receive success");
FileStream fs = File.Create ("1.jpg");
fs.Write (buffer, 0, buffer.Length);
fs.Close ();
Console.ReadKey ();
}
}
}
希望本文所述對大家的C#程序設(shè)計有所幫助。
相關(guān)文章
C#更新文本框textbox數(shù)據(jù)同時刪除舊數(shù)據(jù)問題
這篇文章主要介紹了C#更新文本框textbox數(shù)據(jù)同時刪除舊數(shù)據(jù)問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2024-04-04
C# SendInput 模擬鼠標操作的實現(xiàn)方法
C# SendInput 模擬鼠標操作的實現(xiàn)方法,需要的朋友可以參考一下2013-04-04
C# 微信支付 wx.chooseWXPay 簽名錯誤的解決方法
本篇文章主要介紹了C# 微信支付 wx.chooseWXPay 簽名錯誤的解決方法,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2017-12-12
C#實現(xiàn)數(shù)據(jù)去重的方式總結(jié)
這篇文章主要來和大家一起來討論一下關(guān)于C#數(shù)據(jù)去重的常見的幾種方式,每種方法都有其特點和適用場景,感興趣的小伙伴可以了解一下2023-07-07

