-
storage
LINUX下USB驱动程序的开发,适用于操作系统课程设计等。(LINUX under the USB driver development, applicable to the operating system, such as curriculum design.)
- 2007-07-12 11:08:09下载
- 积分:1
-
ica_for_pid_design
ica for pid design project
- 2014-09-15 02:03:04下载
- 积分:1
-
LMS
说明: DSP实验——自适应滤波器LMS算法实验
c语言编写
已通过调试(DSP Experiment- LMS adaptive filter algorithm experimental c language through debugging)
- 2021-04-17 18:58:52下载
- 积分:1
-
achol
用乔里斯基分解法求系数矩阵为对称正定右端为常向量的方程组(Demand coefficient matrix with the Cholesky decomposition method for symmetric positive definite the right end of the constant vector equations)
- 2012-02-13 23:51:25下载
- 积分:1
-
17.TCP服务端实验
可进行TCP通信实验,并分析TCP通信的逻辑过程(TCP communication experiments can be carried out, and the logical process of TCP communication is analyzed.)
- 2018-04-05 11:12:34下载
- 积分:1
-
gobangCPP
C++五子棋代码,有详细的算法注释,代AI算法...可直接运行(C++ gobang game code-with AI。it can work directly)
- 2012-07-01 18:32:24下载
- 积分:1
-
Apache-Server
Apache Server 在 Windows 环境下的安装与运行(Apache Server in the Windows environment and run the installation)
- 2013-09-03 00:53:48下载
- 积分:1
-
The-robot-program-source-code
蓝牙控制小车机器人程序说明及源代码,word文档。(The Bluetooth control trolley robot program instructions and source code, word document.)
- 2013-08-19 16:23:28下载
- 积分:1
-
hex转bin的程序
hex转bin的程序, 支持大于64K的hex, 网上下载的Hex2Bin不支持64k. 包含工程文件, 简单包装即可生成一个Hex2Bin的小程序【核心代码】 String szLine = ""; String szHex = ""; if (szHexPath == "") { MessageBox.Show("请选择需要转换的目标文件! ", "错误"); return; } StreamReader HexReader = new StreamReader(szHexPath); while (true) { szLine = HexReader.ReadLine(); //读取一行数据 if (szLine == null) //读完所有行 { break; } if (szLine.Substring(0, 1) == ":") //判断第1字符是否是: { if (szLine.Substring(1, 8) == "00000001")//数据结束 { break; } szHex = szLine.Substring(9, szLine.Length - 11); //读取有效字符 } } HexReader.Close(); //关闭目标文件 Int32 i; Int32 j = 0; Int32 Length = szHex.Length; byte[] szBin = new byte[Length]; pbConvert.Maximum = Length / 2; for (i = 0; i < Length; i = 2) //两字符合并成一个16进制字节 { szBin[j] = (byte)Int16.Parse(szHex.Substring(i, 2), NumberStyles.HexNumber); j ; pbConvert.Increment(i); } if (szBinPath == "") { szBinPath = Path.ChangeExtension(szHexPath, "bin"); tbBinPath.Text = szBinPath; } FileStream fBin = new FileStream(szBinPath, FileMode.Create); //创建文件BIN文件 BinaryWriter BinWrite = new BinaryWriter(fBin); //二进制方式打开文件 BinWrite.Write(szBin, 0, Length); //写入数据 BinWrite.Flush();//释放缓存 BinWrite.Close();//关闭文件 MessageBox.Show("文件转换完成! ", "提示"); } catch (Exception ex) { MessageBox.Show(ex.ToString()); }
- 2020-12-05下载
- 积分:1
-
C#使用微信模拟发送post消息请求
C#模拟发送post请求,使用微信模拟消息,Post请求模拟器。
WebClient wc = new WebClient();
wc.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
byte[] postdata = Encoding.UTF8.GetBytes(poststr);
byte[] responseData = wc.UploadData(textBox3.Text, "POST", postdata);//得到返回字符流
textBox2.Text = Encoding.UTF8.GetString(responseData);
- 2022-11-24 04:30:03下载
- 积分:1