资源简介
C#UDP通信+文件传输 源码
京华志&精华志出品 希望大家互相学习,互相进步 支持CSDN 支持微软
主要包括C# ASP.NET SQLDBA 源码 毕业设计 开题报告 答辩PPT等
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Text;
using System.Net.Sockets;
using System.Threading;
using System.IO;
namespace BroadcastExample
{
public class ConnectionClient
{
Socket sokMsg;
DGShowMsg dgShowMsg;//负责 向主窗体文本框显示消息的方法委托
DGShowMsg dgRemoveConnection;// 负责 从主窗体 中移除 当前连接
Thread threadMsg;
#region 构造函数
///
///
///
/// 通信套接字
/// 向主窗体文本框显示消息的方法委托
public ConnectionClient(Socket sokMsg DGShowMsg dgShowMsg DGShowMsg dgRemoveConnection)
{
this.sokMsg = sokMsg;
this.dgShowMsg = dgShowMsg;
this.dgRemoveConnection = dgRemoveConnection;
this.threadMsg = new Thread(RecMsg);
this.threadMsg.IsBackground = true;
this.threadMsg.Start();
}
#endregion
bool isRec = true;
#region 02负责监听客户端发送来的消息
void RecMsg()
{
while (isRec)
{
try
{
byte[] arrMsg = new byte[1024 * 1024 * 2];
//接收 对应 客户端发来的消息
int length = sokMsg.Receive(arrMsg);
//将接收到的消息数组里真实消息转成字符串
string strMsg = System.Text.Encoding.UTF8.GetString(arrMsg 0 length);
//通过委托 显示消息到 窗体的文本框
dgShowMsg(strMsg);
}
catch (Exception ex)
{
isRec = false;
//从主窗体中 移除 下拉框中对应的客户端选择项,同时 移除 集合中对应的 ConnectionClient对象
dgRemoveConnection(sokMsg.RemoteEndPoint.ToString());
}
}
}
#endregion
#region 03向客户端发送消息
///
/// 向客户端发送消息
///
///
public void Send(string strMsg)
{
byte[] arrMsg = System.Text.Encoding.UTF8.GetBytes(strMsg);
byte[] arrMsgFinal = new byte[arrMsg.Length + 1];
arrMsgFinal[0] = 0;//设置 数据标识位等于0,代表 发送的是 文字
arrMsg.CopyTo(arrMsgFinal 1);
sokMsg.Send(arrMsgFinal);
}
#endregion
#region 04向客户端发送文件数据 +void SendFile(string strPath)
///
/// 04向客户端发送文件数据
///
/// 文件路径
public void SendFile(string strPath)
{
//通过文件流 读取文件内容
using (FileStream fs = new FileStream(strPath FileMode.OpenOrCreate))
{
byte[] arrFile = new byte[1024 * 1024 * 2];
//读取文件内容到字节数组,并 获得 实际文件大小
int length = fs.Read(arrFile 0 arrFile.Length);
//定义一个 新数组,长度为文件实际长度 +1
byte[] arrFileFina
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 59136 2012-06-25 01:07 C#UDP通信+文件传输\2000多商业程序 OA 程序下载 版权说明.txt
文件 59136 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\2000多商业程序 OA 程序下载 版权说明.txt
文件 17920 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\bin\Debug\BroadcastExample.exe
文件 42496 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\bin\Debug\BroadcastExample.pdb
文件 14328 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\bin\Debug\BroadcastExample.vshost.exe
文件 490 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\bin\Debug\BroadcastExample.vshost.exe.manifest
文件 3534 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\BroadcastExample.csproj
文件 4623 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\ConnectionClient.cs
文件 161 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\DGShowMsg.cs
文件 18495 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\Form1.cs
文件 6662 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\Form1.Designer.cs
文件 5814 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\Form1.resx
文件 1502 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\obj\BroadcastExample.csproj.FileListAbsolute.txt
文件 2254 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\obj\Debug\BroadcastExample.csproj.FileListAbsolute.txt
文件 847 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\obj\Debug\BroadcastExample.csproj.GenerateResource.Cache
文件 17920 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\obj\Debug\BroadcastExample.exe
文件 180 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\obj\Debug\BroadcastExample.Form1.resources
文件 42496 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\obj\Debug\BroadcastExample.pdb
文件 180 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\obj\Debug\BroadcastExample.Properties.Resources.resources
文件 4608 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\obj\Debug\TempPE\Properties.Resources.Designer.cs.dll
文件 491 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\Program.cs
文件 1204 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\Properties\AssemblyInfo.cs
文件 2856 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\Properties\Resources.Designer.cs
文件 5612 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\Properties\Resources.resx
文件 1114 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\Properties\Settings.Designer.cs
文件 249 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample\Properties\Settings.settings
文件 938 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample.sln
..A..H. 18944 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\BroadcastExample.suo
文件 3543552 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\DevComponents.DotNetBar2.dll
文件 1189 2012-06-25 01:07 C#UDP通信+文件传输\BroadcastExample\UpgradeLog.xm
............此处省略21个文件信息
- 上一篇:C#支付宝、微信扫码支付类库
- 下一篇:C#版KTV点歌系统源代码
相关资源
- C#版KTV点歌系统源代码
- C#支付宝、微信扫码支付类库
- 基于asp.net的出租房屋系统
- Asp.net 个人相册管理网站系统
- C#连接Oracle11g无需安装客户端
- asp.netgrpccert.zip
- C#矢量图形开发范例
- 微软C#企业库Enterprise Library 6 Docs.ch
- 铁路管理系统
- C#API官方手册
- C#连接MySQL数据库代码
- 人事小项目(c#+sql+mvc)
- C# 写的纸牌游戏 蜘蛛游戏
- 个人理财系统c#
- C#通讯录管理系统源程序
- asp.net动态网站开发教程第二版课本源
- asp.net备份和还原数据库C#
- c#学生考勤管理系统
- C# Windows服务,实现代码,含详细注释
- 基于ASP.NET简单书店管理系统网站
- asp.net 购物网站
- ADB操作控制手机C#代码
- c#试卷自动生成系统
- 简单的asp.net个人网站希望大家多多的
- C#宠物商店完整代码
- asp.net实现文件上传小网站
- c#图像处理源代码包含边缘检测,灰度
- C#资产评估管理系统(源码)
- C#邮箱系统源码;C#邮箱系统源码
- C# WINFORM写的五子棋代码(双人对战以
评论
共有 条评论