-
IEEEstandardCommonFormatforTransientData
IEEE standard Common Format for Transient Data Exchange (COMTRADE) for power systems.pdf电力系统故障录波的标准数据格式(IEEE standard Common Format for Transient Data Exchange (COMTRADE) for power systems.pdf power system fault recorder standard data format)
- 2007-10-10 10:02:37下载
- 积分:1
-
DSpace-Manual
说明: dSPACE培训教程,入门及系统简介 ,dSPACE开发流程等(dSPACE training module)
- 2011-02-25 17:39:02下载
- 积分: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
-
code
C语言数值算法程序大全(第二版),课本文件(C language program Guinness numerical algorithm (second edition), textbooks document)
- 2009-01-15 10:15:57下载
- 积分:1
-
Crtt_WinCE
《Windows CE 应用程序设计》 书上的第七章第六节实例——火车时刻表查询工具——EVC开发的,不错的WinCE实例、、、
( Windows CE Application Programming book on the example of Section VI Chapter VII- Train Timetable Query Tool- EVC developed WinCE good example,,,)
- 2008-04-19 15:15:19下载
- 积分:1
-
USB-2.0-Host
its a useful document about USB2 HOST
- 2011-06-22 05:30:53下载
- 积分:1
-
CSharpSpider1
一个小游戏,CSharpSpider很有意思,希望交流(A small game, CSharpSpider very interesting, I hope the exchange)
- 2011-06-22 15:30:59下载
- 积分:1
-
B样条曲线基函数
B样条曲线基函数计算方法以及显示。基函数计算方法在View类中。可设置控制点数量,样条曲线的阶数。运行MFC程序后直接在客户区显示基函数。
- 2022-02-25 13:58:24下载
- 积分:1
-
自动登陆网页源码
本程序通过c#中的winform实现网页的自动登陆,用到的方法主要是webbrowser方式
- 2022-02-04 21:32:39下载
- 积分:1
-
个人写的SGIP C#开发样例
个人写的SGIP C#开发样例 ,仅供大家参考
- 2022-03-24 11:45:29下载
- 积分:1