-
LoRaTx
LORA transmitter souce code to upload arduino
- 2016-12-02 15:55:57下载
- 积分:1
-
3.智能仓库管理系统
基于stm32f103RCT6的智能仓库管理系统项目代码(Project code of intelligent warehouse management system based on stm32f103RCT6)
- 2018-11-17 14:52:52下载
- 积分:1
-
利用C++基于FTP服务器搭建邮件发送平台
利用C++搭建的邮件发送平台,与FTP服务器有关,可以利用该程序发送邮件
- 2022-10-09 04:35:03下载
- 积分:1
-
ThreePhaseScan_24_05
结构光重建明暗条纹实现方式,C++实现。(Dark stripe structured light reconstruction implementation, C++ implementation.)
- 2011-09-18 14:32:48下载
- 积分:1
-
com_ex
用Visual C++实现二维等值线的COM组件的源码,感兴趣的朋友可以看看。(Using Visual C++ 2D contour of the COM component source, interested friends can see.)
- 2011-06-16 05:50:03下载
- 积分:1
-
program
在matlab, 利用粒子群算法(PSO)实现函数极值优化(In matlab, using particle swarm optimization (PSO) to achieve function extreme optimization)
- 2014-11-12 05:51:51下载
- 积分:1
-
animated_button
OpenGL高级编程与可视化系统开发(高级编程篇)的随书源码-4,学习OpenGL的好东西-OpenGL Programming and Advanced Visualization System (Advanced Programming Part 1) the source-4 with books, learning the good stuff OpenGL (OpenGL high-level programming and visualization systems development (high-level programming chapter)-4 of the source with the book, learning OpenGL good things-OpenGL Programming and Advanced Visualization System (Advanced Programming Part 1) the source-4 with books, learning the good stuff OpenGL)
- 2008-08-18 14:14:52下载
- 积分:1
-
软件试用版注册
软件试用版注册 包括bios、硬盘序列号、mac地址 cpu等
- 2022-02-07 02:41:34下载
- 积分:1
-
Hospital registration system
该代码允许用户注册新的病人和医生,编辑他们的数据并在存储的数据中搜索
- 2022-11-30 08:35:03下载
- 积分:1
-
C# OpenRead获取网站源代码,并保存到TXT文件Stream流中
C#获取网页源代码,并将其保存为TXT文件,这里应用了OpenRead和Stream流方法,具体的实现,请参见以下代码:
richTextBox1.Text = string.Empty;
WebClient wclient = new WebClient();//实例化WebClient类对象
wclient.BaseAddress = textBox1.Text;//设置WebClient的基URI
wclient.Encoding = Encoding.UTF8;//指定下载字符串的编码方式
//为WebClient类对象添加标头
wclient.Headers.Add("Content-Type", "application/x-www-form-urlencoded");
//使用OpenRead方法获取指定网站的数据,并保存到Stream流中
Stream stream = wclient.OpenRead(textBox1.Text);
//使用流Stream声明一个流读取变量sreader
StreamReader sreader = new StreamReader(stream);
string str = string.Empty;//声明一个变量,用来保存一行从WebCliecnt下载的数据
//循环读取从指定网站获得的数据
while ((str = sreader.ReadLine()) != null)
{
richTextBox1.Text += str + "
";
}
//调用WebClient对象的DownloadFile方法将指定网站的内容保存到文件中
wclient.DownloadFile(textBox1.Text, DateTime.Now.ToFileTime() + ".txt");
MessageBox.Show("保存到文件成功");
- 2022-02-02 08:55:49下载
- 积分:1