C# method of downloading files through HTTP

This article mainly introduces the method of C# to implement HTTP downloading files, including the creation of HTTP communication, the writing of local files, etc., which is very practical, and friends who need it can refer to

/// <summary>

/// Http下载文件

/// </summary>

public static string HttpDownloadFile(string url, string path)

{
    
    

    // 设置参数

    HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;
    //发送请求并获取相应回应数据

    HttpWebResponse response = request.GetResponse() as HttpWebResponse;

    //直到request.GetResponse()程序才开始向目标网页发送Post请求

    Stream responseStream = response.GetResponseStream();
    //创建本地文件写入流

    Stream stream = new FileStream(path, FileMode.Create);
    byte[] bArr = new byte[1024];

    int size = responseStream.Read(bArr, 0, (int)bArr.Length);

    while (size > 0)

    {
    
    

        stream.Write(bArr, 0, size);

        size = responseStream.Read(bArr, 0, (int)bArr.Length);

    }

    stream.Close();

    responseStream.Close();

    return path;

}

Guess you like

Origin blog.csdn.net/s_156/article/details/113866519