WebClient用法小结(转载)

 

如果只想从特定的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 /// <summary>
3 /// 读取指定uri的html
4 /// </summary>
5 /// <param name="sender"></param>
6 /// <param name="e"></param>
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 /// <summary>
3 /// 打开一个流使用指定的方法将数据写入到uri
4 /// </summary>
5 /// <param name="sender"></param>
6 /// <param name="e"></param>
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 /// <summary>
3 /// 把本地文件上传到指定uri
4 /// </summary>
5 /// <param name="sender"></param>
6 /// <param name="e"></param>
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 #endregion
17
18
19 #region 把数据缓冲区上载到指定资源
20 /// <summary>
21 /// 把数据缓冲区上载到指定资源
22 /// </summary>
23 /// <param name="sender"></param>
24 /// <param name="e"></param>
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,感谢原文作者!

WebClient 下载文件的更多相关文章

  1. C#使用WebClient下载文件到本地目录

    C#使用WebClient下载文件到本地目录. 1.配置本地目录路径 <appSettings> <!--文件下载目录--> <add key="Downloa ...

  2. webclient下载文件 带进度条

    private void button1_Click(object sender, EventArgs e) { doDownload(textBox1.Text.Trim()); } private ...

  3. 使用WebClient下载文件到本地目录

    利用WebClient实现下载文件 调用 string url = "https://timgsa.baidu.com/timg?image&quality=80&size= ...

  4. WebClient下载文件

    public void DownDile(string url) { WebClient client = new WebClient(); string URLAddress = @"ht ...

  5. C# WebClient类上传和下载文件

    这篇文章主要介绍了C# WebClient类用法实例,本文讲解使用WebClient下载文件.OpenWriter打开一个流使用指定的方法将数据写入到uri以及上传文件示例,需要的朋友可以参考下   ...

  6. C#异步批量下载文件

    C#异步批量下载文件 实现原理:采用WebClient进行批量下载任务,简单的模拟迅雷下载效果! 废话不多说,先看掩饰效果: 具体实现步骤如下: 1.新建项目:WinBatchDownload 2.先 ...

  7. WebClient.DownloadFile(线程机制,异步下载文件)

    线程机制(避免卡屏),异步下载文件. 我做网站的监控,WebClient.DownloadFile这个方法是我经常用到的,必要的时候肯定是要从网上下载些什么(WebRequest 也可以下载网络文件, ...

  8. WebClient异步下载文件

    namespace ConsoleAppSyncDownload{    class Program    { static void Main(string[] args)        {     ...

  9. [c#]WebClient异步下载文件并显示进度

    摘要 在项目开发中经常会用到下载文件,这里使用winform实现了一个带进度条的例子. 一个例子 using System; using System.Collections.Generic; usi ...

随机推荐

  1. Android: ListView与Button的共存问题解决

    ListView 和 其它能触发点击事件的widget无法一起正常工作的原因是加入其它widget后,ListView的itemclick事件将无法触发,被其它widget的click事件屏蔽.   ...

  2. Java之Object对象中的wait()和notifyAll()用法

    用一个例子来说明Object对象中的wait方法和notifyAll方法的使用. 首先定义一个消息类,用于封装数据,以供读写线程进行操作: /** * 消息 * * @author syj */ pu ...

  3. OpenBLAS编译 Release x64 Win10 vs2015

    >------ 已启动生成: 项目: ZERO_CHECK, 配置: Release x64 ------ > Checking Build System > CMake does ...

  4. 使用Maven完成SSM框架整合环境构建——基于Spring4和Mybatis3

    只言片语 使用Maven来搭建一个SSM环境,其实和使用手工倒入jar的过程没有多大区别,所用的jar包都是一样的,但是区别在与不用你手动导入jar包了,而是只修改pom.xml,maven会自动根据 ...

  5. Elasticsearch服务器开发(第2版).pdf 含目录

    Elasticsearch服务器开发(第2版) 介绍: <Elasticsearch服务器开发(第2版)>这一版针对Elasticsearch的新版本更新了内容,增加了第1版中遗漏的重要内 ...

  6. Flutter 路由传入中文参数报错无法push问题

    flutter自带路由传递参数和使用第三方库fluro路由传递参数都可以通过一下方式解决问题 String jsonString = json.encode(mapValue); var jsons ...

  7. 第七章 云原生生态的基石 Kubernetes

    7.1 Kubernetes架构 K8s的核心组件: etcd: 协同存储,负责保存整个集群的状态. API:资源操作的唯一入口. controller manager: 维护集群的状态,执行故障检测 ...

  8. STM32 MDK摘记

    题记:这人是越懒越懒,记性也也来越差,前段时间改了个链接文件,今天想用,竟然忘了咋写....还是勤记记吧... 随时更新,笔记帖. 不喜勿喷! 1,关于MDK链接文件宏的定义 #! armcc -E ...

  9. Django学习过程中遇到的问题

    一.Django数据同步过程中遇到的问题: 1.raise ImproperlyConfigured('mysqlclient 1.3.13 or newer is required; you hav ...

  10. 配置jdbc问题 mysql与IDEA

    1.新建lib文件夹,将jar文件导入 2在structure中添加jar文件 3设置url时需要设置时区: import java.sql.Connection;import java.sql.Dr ...