博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
WebClient 下载文件
阅读量:5209 次
发布时间:2019-06-14

本文共 3765 字,大约阅读时间需要 12 分钟。

 

如果只想从特定的URI请求文件,则使用WebClient,它是最简单的.NET类,它只用一两条命令执行基本操作,.NET FRAMEWORK目前支持以http:、https:、ftp:、和 file: 方案标识符开头的 URI。

WebClient下载文件

使用webclient下载文件有两种方法,具体使用哪一种方法取决于文件内容的处理方式,如果只想把文件保存到磁盘上,使用downloadfile()方法,此方法有两个参数,即请求的uri和请求文件的的数据保存位置。

更常见的是,应用程序需要处理从web站点检索的数据,为此要用到OpenRead方法,此方法返回一个Stream对象,然后,可以Stream对象从数据流提取到内存中。

示例:OpenRead(string uri);

1         #region 读取指定uri的html 2         ///  3         /// 读取指定uri的html 4         ///  5         ///  6         ///  7         private void button4_Click(object sender, EventArgs e) 8         { 9             WebClient wc = new WebClient();10             string uri = "http://127.0.0.1/rss/sina.aspx";11             Stream stream = wc.OpenRead(uri);12             StreamReader sr = new StreamReader(stream);13             string strLine = "";14             while ((strLine = sr.ReadLine()) != null)15             {16                 this.listBox1.Items.Add(strLine);17             }18             sr.Close();19         }20         #endregion

示例:OpenWriter(string uri,string method);

1 #region 打开一个流使用指定的方法将数据写入到uri 2         ///  3         /// 打开一个流使用指定的方法将数据写入到uri 4         ///  5         ///  6         ///  7         private void button1_Click(object sender, EventArgs e) 8         { 9             WebClient wc = new WebClient();10             string uri = "http://192.168.0.35/cims30/rss.txt";11             Stream stream = wc.OpenWrite(uri, "PUT");12             StreamWriter sw = new StreamWriter(stream);13             sw.WriteLine("HelloWorldHelloWorldHelloWorldHelloWorld");14             sw.Flush();15             sw.Close();16             MessageBox.Show("OK");17         }18         #endregion

openwriter方法返回一个可写的数据流,便于用户把数据发送给uri,可以指定用户把数据发送给主机的方法,默认是post,上例假定0.35的服务器上有一个可写的目录刺马s,这段代码是在该目录下创建rss.txt文件,其内容为“HelloWorldHelloWorldHelloWorldHelloWorld”

WebClient上传文件

WebClient类提供了UploadFile()UploadData()方法,在需要投递HTML窗体或上传整个文件时候,就可以使用这两个方法。Uploadfile()方法把文件上传到指定的位置,其中文件名字已经给出,uploaddata()方法把字节数组提供的二进制数据上传到指定的uri;

示例:

1   #region 把本地文件上传到指定uri 2         ///  3         /// 把本地文件上传到指定uri 4         ///  5         ///  6         ///  7         private void button2_Click(object sender, EventArgs e) 8         { 9             WebClient wc = new WebClient();10             string targetPath = "http://127.0.0.1/rss/Data Configuration.zip";11             string sourcePath = "d:\\Data Configuration.zip";12             this.label1.Text = string.Format("uploading {0} to {1}", targetPath, sourcePath);13             byte[] bt = wc.UploadFile(targetPath, "PUT", sourcePath);14             MessageBox.Show("OK");15         }16         #endregion17 18 19         #region 把数据缓冲区上载到指定资源20         /// 21         /// 把数据缓冲区上载到指定资源22         /// 23         /// 24         /// 25         private void button3_Click(object sender, EventArgs e)26         {27             WebClient wc = new WebClient();28             string targetPath = "http://127.0.0.1/rss/kaifeng.jpg";29             string sourcePath = @"C:\test.jpg";30             FileStream fs = new FileStream(sourcePath, FileMode.Open, FileAccess.Read);31             byte[] bt = new byte[fs.Length];32             fs.Read(bt, 0, bt.Length);33             wc.UploadData(targetPath, "PUT", bt);34         }35         #endregion

webclient功能有限,特别是不能使用身份验证证书,这样,上传数据时候问题出现,现在许多站点都不会接受没有身份验证的上传文件。尽管可以给请求添加标题信息并检查相应中的标题信息,但这仅限于一般意义的检查,对于任何一个协议,webclient没有具体支持,。这是由于webclient是非常一般的类,可以使用任意协议发送请求和接受相应,它不能处理特定于任何协议的任何特性。

-------------------------------------------------------------------------------------------------------------

-------------------------------------------------------------------------------------------------------------
注:本文转载于http://www.cnblogs.com/hfliyi/archive/2012/08/21/2649892.html,感谢原文作者!

转载于:https://www.cnblogs.com/BoKeYuan259/p/10898567.html

你可能感兴趣的文章
iOS的横屏(Landscape)与竖屏(Portrait)InterfaceOrientation
查看>>
JS中 window的用法
查看>>
Codeforces Round #361 (Div. 2)
查看>>
oauth2学习
查看>>
Python time & datetime & string 相互转换
查看>>
细说WebSocket - Node篇
查看>>
【pwnable.kr】 flag
查看>>
1014 装箱问题——http://codevs.cn/problem/1014/
查看>>
poj 3177 边双联通 **
查看>>
java.lang.UnsupportedOperationException
查看>>
java-斐波那契数列的解法
查看>>
rackup工具
查看>>
Linux operating system (Ubuntu) 学习-1
查看>>
ajax-原生写法步骤
查看>>
.Net语言 APP开发平台——Smobiler学习日志:如何在手机上实现饼图图表
查看>>
svn完整备份迁移
查看>>
Python字典实现分析
查看>>
jenkins+testNG
查看>>
Java自定义范型的应用技巧
查看>>
[洛谷1485] 火枪打怪
查看>>