资源简介
用C#写的TCP_IP服务器,支持发送HEX和ASCII切换;支持接收HEX和ASCII切换
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Collections;
namespace TCP_IP
{
class cMyMathClass
{
public static ArrayList Str16ToArrayList(string strIn)//字符串拆分
{
string sParse = ““;
ArrayList myAL = new ArrayList();
int i = 0;
foreach (char cc in strIn)
{
i++;
if (cc == ‘ ‘ || sParse.Length == 2)
{
myAL.Add(sParse);
if (sParse.Length == 2 && cc != ‘ ‘)//两个字符
{
sParse = Convert.ToString(cc);
}
else
{
sParse = ““;
}
}
else
{
sParse += Convert.ToString(cc);
if (i == strIn.Length && cc != ‘ ‘)//末尾字符
{
myAL.Add(sParse);
}
}
}
return myAL;
}
public static string strAddSpace(string strInData)//以两个或空格问区分字符串增加空格
{
string strParse = ““;
string strAddResult = ““;
int i = 0;
foreach (char cc in strInData)
{
i++;
if (cc == ‘ ‘ || strParse.Length == 2)
{
strAddResult += strParse + “ “;
if (strParse.Length == 2 && cc != ‘ ‘)//两个字符
{
strParse = Convert.ToString(cc);
}
else
{
strParse = ““;
}
}
else
{
strParse += Convert.ToString(cc);
}
if (i == strInData.Length && cc != ‘ ‘)//末尾字符
{
strAddResult += strParse;
}
}
return strAddResult;
}
public static string strSubSpace(string strInData)//去除字符串中空格并把单个字符串前面加0
{
string strParse = “ “ + strInData + “ “;//将头和尾组合成一样的形式
string strParseTemp = ““;
string strSubResult = ““;
//int i = 0;
for (int i = 0; i < strParse.Length; i++)
{
//char myChar
/*if ((i == 0) && (strParse[1]==‘ ‘))
{
strParseTemp = “0“ + strParse[0].ToString();
strSubResult += strParseTemp;
}
else*/
if ((i > 0) && (i < strInData.Length + 1))
{
if ((strParse[i] != ‘ ‘) && (strParse[i - 1] == ‘ ‘) && (strParse[i + 1] == ‘ ‘))
{
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-08-09 11:23 2、TCP_IP_Sever\
目录 0 2018-08-09 11:23 2、TCP_IP_Sever\TCP_IP\
目录 0 2018-08-09 11:23 2、TCP_IP_Sever\TCP_IP\TCP_IP\
文件 27046 2018-06-12 11:12 2、TCP_IP_Sever\TCP_IP\TCP_IP\Form1.Designer.cs
文件 23907 2018-06-26 10:53 2、TCP_IP_Sever\TCP_IP\TCP_IP\Form1.cs
文件 6215 2018-06-12 11:12 2、TCP_IP_Sever\TCP_IP\TCP_IP\Form1.resx
文件 8780 2018-06-12 13:07 2、TCP_IP_Sever\TCP_IP\TCP_IP\MyTcpServer.cs
文件 487 2018-05-25 14:21 2、TCP_IP_Sever\TCP_IP\TCP_IP\Program.cs
目录 0 2018-08-09 11:23 2、TCP_IP_Sever\TCP_IP\TCP_IP\Properties\
文件 1362 2018-05-25 14:21 2、TCP_IP_Sever\TCP_IP\TCP_IP\Properties\AssemblyInfo.cs
文件 4306 2018-05-25 14:35 2、TCP_IP_Sever\TCP_IP\TCP_IP\Properties\Resources.Designer.cs
文件 6897 2018-05-25 14:35 2、TCP_IP_Sever\TCP_IP\TCP_IP\Properties\Resources.resx
文件 1093 2018-05-25 14:21 2、TCP_IP_Sever\TCP_IP\TCP_IP\Properties\Settings.Designer.cs
文件 249 2018-05-25 14:21 2、TCP_IP_Sever\TCP_IP\TCP_IP\Properties\Settings.settings
文件 4173 2018-06-06 14:12 2、TCP_IP_Sever\TCP_IP\TCP_IP\TCP_IP.csproj
目录 0 2018-08-09 11:23 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\
目录 0 2018-08-09 11:23 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\Debug\
文件 7814 2017-02-26 19:26 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\Debug\1.jpg
文件 262395 2017-02-26 19:28 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\Debug\2.jpg
文件 365056 2018-06-26 10:53 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\Debug\TCP_IP.exe
文件 67072 2018-06-26 10:53 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\Debug\TCP_IP.pdb
文件 11600 2018-06-26 10:53 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\Debug\TCP_IP.vshost.exe
文件 490 2009-08-31 00:40 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\Debug\TCP_IP.vshost.exe.manifest
文件 21065 2017-02-27 13:22 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\Debug\green.png
文件 17187 2017-02-27 13:22 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\Debug\red.png
目录 0 2018-08-09 11:23 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\Release\
文件 7814 2017-02-26 19:26 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\Release\1.jpg
文件 262395 2017-02-26 19:28 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\Release\2.jpg
文件 363520 2018-06-26 10:53 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\Release\TCP_IP.exe
文件 65024 2018-06-26 10:53 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\Release\TCP_IP.pdb
文件 11600 2018-07-31 08:36 2、TCP_IP_Sever\TCP_IP\TCP_IP\bin\Release\TCP_IP.vshost.exe
............此处省略37个文件信息
相关资源
- C#动态绘制心率折线图串口通信
- C# winform 权限控制 包括角色 用户 权限
- C# 爬虫程序
- GIS算法c#实现:八方向栅格化,扫描线
- C#_超市进销存管理系统全套毕业设计
- 类似于QQ的软件C#编写
- C# 编写的类似于QQ即时通讯软件(源代
- 双像解析相对定向C#程序
- modbus tcp/rtu 基于C#的源码实现(老外的
- C#公交查询系统
- C#漂亮的MenuStrip和ContextMenuStrip皮肤
- GDAL c# 矢量栅格化
- C#批量图片切割和转dds格式源码
- C# 影院售票系统V2.0 (完整源码+注释
- C#三层开发的快餐店点餐系统
- .NET C#硬件编程源码
- C#简易网上报名系统
-
Minibl
ink C# 封装 - C#制作的简单学生信息管理系统
- C#实时获取CPU温度及其它硬件信息非
- 如何在水晶报表中分组汇总记录源程
- C#开发过程中碰到的问题 经验总结
- C#超市管理系统C#超市管理系统
- c#开发winform程序自动更新
- C#入门经典第五版源代码(随书源码)
- c# gdi+ 地图绘制
- c# 鼠标在窗体PictureBox上的十字光标
- 基于C#的AE二次开发基础篇和提高篇有
- 3个C#与GPRS进行通信的.rar
- C# Canon EDSDK附加 C# Nikon SDK
评论
共有 条评论