栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > C/C++/C# > C#教程

C# WebClient类用法实例

C#教程 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

C# WebClient类用法实例

进来的项目中要实现能够在windows service中调用指定项目的链接页面。由于访问页面时候使用的是ie浏览器或其他浏览器,所以想起用webclient类。

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

WebClient下载文件

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

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

示例:OpenRead(string uri);

OpenRead(string uri)
 #region 读取指定uri的html
    /// 
    /// 读取指定uri的html
    /// 
    /// 
    /// 
    private void button4_Click(object sender, EventArgs e)
    {
      WebClient wc = new WebClient();
      string uri = "http://127.0.0.1/rss/sina.aspx";
      Stream stream = wc.OpenRead(uri);
      StreamReader sr = new StreamReader(stream);
      string strLine = "";
      while ((strLine = sr.ReadLine()) != null)
      {
 this.listBox1.Items.Add(strLine);
      }
      sr.Close();
    }
    #endregion

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

OpenWriter(string uri,string method)
#region 打开一个流使用指定的方法将数据写入到uri
    /// 
    /// 打开一个流使用指定的方法将数据写入到uri
    /// 
    /// 
    /// 
    private void button1_Click(object sender, EventArgs e)
    {
      WebClient wc = new WebClient();
      string uri = "http://192.168.0.35/cims30/rss.txt";
      Stream stream = wc.OpenWrite(uri, "PUT");
      StreamWriter sw = new StreamWriter(stream);
      sw.WriteLine("HelloWorldHelloWorldHelloWorldHelloWorld");
      sw.Flush();
      sw.Close();
      MessageBox.Show("OK");
    }
    #endregion

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

上传文件

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

示例:上传文件

#region 把本地文件上传到指定uri
    /// 
    /// 把本地文件上传到指定uri
    /// 
    /// 
    /// 
    private void button2_Click(object sender, EventArgs e)
    {
      WebClient wc = new WebClient();
      string targetPath = "http://127.0.0.1/rss/Data Configuration.zip";
      string sourcePath = "d:\Data Configuration.zip";
      this.label1.Text = string.Format("uploading {0} to {1}", targetPath, sourcePath);
      byte[] bt = wc.UploadFile(targetPath, "PUT", sourcePath);
      MessageBox.Show("OK");
    }
    #endregion


    #region 把数据缓冲区上载到指定资源
    /// 
    /// 把数据缓冲区上载到指定资源
    /// 
    /// 
    /// 
    private void button3_Click(object sender, EventArgs e)
    {
      WebClient wc = new WebClient();
      string targetPath = "http://127.0.0.1/rss/kaifeng.jpg";
      string sourcePath = @"C:test.jpg";
      FileStream fs = new FileStream(sourcePath, FileMode.Open, FileAccess.Read);
      byte[] bt = new byte[fs.Length];
      fs.Read(bt, 0, bt.Length);
      wc.UploadData(targetPath, "PUT", bt);
    }
    #endregion

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

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/125008.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号