zoukankan      html  css  js  c++  java
  • Webclient

    using System;
    using System.Collections.Generic;
    using System.Net;
    using System.Text;

    namespace ConsoleApp1
    {
    class Program
    {
    static void Main(string[] args)
    {
    TestWebclient testWebclient = new TestWebclient();
    testWebclient.WebClientUpload();
    //WebClientDownload();
    //WebClientUpload();
    //WebClientDelete();
    Console.ReadKey();
    }

    #region 下载
    /// <summary>
    /// 下载
    /// </summary>
    static void WebClientDownload()
    {
    WebClient webClient = new WebClient
    {
    Credentials = CredentialCache.DefaultCredentials
    };
    //Uri _uri = new Uri(@"http://localhost:8082/123.txt");
    Uri uri = new Uri(@"http://192.168.0.100:8082/123.txt");
    webClient.DownloadProgressChanged += WebClient_DownloadProgressChanged;
    webClient.DownloadFileCompleted += WebClient_DownloadFileCompleted;
    webClient.DownloadFileAsync(uri, @"D:download123.txt");
    }

    private static void WebClient_DownloadFileCompleted(object sender, System.ComponentModel.AsyncCompletedEventArgs e)
    {
    Console.WriteLine("下载完成...");
    }

    private static void WebClient_DownloadProgressChanged(object sender, DownloadProgressChangedEventArgs e)
    {
    Console.WriteLine($"{e.ProgressPercentage}:{e.BytesReceived}/{e.TotalBytesToReceive}");
    }

    #endregion

    #region 上传

    /// <summary>
    /// 上传
    /// </summary>
    static void WebClientUpload()
    {
    WebClient webClient = new WebClient
    {
    Credentials = new NetworkCredential("test", "123")
    };
    Uri uri = new Uri(@"http://192.168.0.100:8082/456.xlsx");
    webClient.UploadProgressChanged += WebClient_UploadProgressChanged;
    webClient.UploadFileCompleted += WebClient_UploadFileCompleted;
    webClient.UploadFileAsync(uri, "PUT", @"D:download456.xlsx");
    }

    private static void WebClient_UploadFileCompleted(object sender, UploadFileCompletedEventArgs e)
    {
    Console.WriteLine("上传完成...");
    }

    private static void WebClient_UploadProgressChanged(object sender, UploadProgressChangedEventArgs e)
    {
    Console.WriteLine($"{e.ProgressPercentage}:{e.BytesSent}/{e.TotalBytesToSend}");
    }
    #endregion

    #region 删除
    /// <summary>
    /// 删除
    /// </summary>
    static void WebClientDelete()
    {
    WebClient webClient = new WebClient
    {
    Credentials = new NetworkCredential("test", "123")
    };
    Uri uri = new Uri(@"http://192.168.0.100:8082/456.xlsx");
    webClient.UploadDataCompleted += WebClient_UploadDataCompleted;
    webClient.UploadDataAsync(uri, "DELETE", new byte[0]);
    }

    private static void WebClient_UploadDataCompleted(object sender, UploadDataCompletedEventArgs e)
    {
    Console.WriteLine("已删除...");
    }
    #endregion
    }

    }

  • 相关阅读:
    实验2四则运算结对
    作业5 四则运算 测试与封装 5.1
    0909我对编译的看法
    P2602 [ZJOI2010]数字计数(递推+数位dp写法)
    模数的世界[数论]
    P2312[秦九韶+读入取模+哈希解方程]
    第三章 Python 的容器: 列表、元组、字典与集合
    第二章 Python 基本元素:数字、字符串、变量
    第一章 Python 之初探
    第四章 Python 外壳 :代码结构
  • 原文地址:https://www.cnblogs.com/1175429393wljblog/p/11198523.html
Copyright © 2011-2022 走看看