WebClient下载文件损坏

时间:2018-08-22 06:10:45

标签: c# .net webclient downloadfile

我正在尝试使用C#WebClient下载文件。

以下是网址: http://www.czce.com.cn/cn/DFSStaticFiles/Future/2018/20180821/FutureDataClearParams.txt

如果我手动下载它,一切看起来都很好。 但是,如果我使用WebClient下载文件,则内容已损坏。 我尝试使用许多不同的编码方法。 下面是重现该问题的最少代码。

class Program
{
    static void Main(string[] args)
    {
        WebClient client = new WebClient();
        client.Proxy = new WebProxy("some company proxy");
        string url = "http://www.czce.com.cn/cn/DFSStaticFiles/Future/2018/20180821/FutureDataClearParams.txt";
        client.DownloadFile(url, @"D:\file.txt");
    }
}

现在,此问题已解决,感谢大家的帮助(@Gauravsa和@John)。 该文件确实已压缩。

解决方案是:

public class MyWebClient : WebClient
{
    protected override WebRequest GetWebRequest(Uri address)
    {
        HttpWebRequest request = base.GetWebRequest(address) as HttpWebRequest;
        request.AutomaticDecompression = DecompressionMethods.Deflate | DecompressionMethods.GZip;
        return request;
    }
}

2 个答案:

答案 0 :(得分:0)

我测试并工作。

例如,查看此控制台应用程序。它从URL下载您的文件,并将其作为file.txt保存到桌面。 :

class Program
{
    static void Main(string[] args)
    {
    WebClient client = new WebClient();
                string address = "http://www.czce.com.cn/cn/DFSStaticFiles/Future/2018/20180821/FutureDataClearParams.txt";
                // Save the file to desktop for debugging
                var desktop = Environment.GetFolderPath(Environment.SpecialFolder.Desktop);
                string fileName = desktop + "\\file.txt";
                client.DownloadFile(address, fileName);
    }
}

答案 1 :(得分:0)

使用WebClient.DownloadFile

using (WebClient client = new WebClient())
{
    client.DownloadFile("http://www.czce.com.cn/cn/DFSStaticFiles/Future/2018/20180821/FutureDataClearParams.txt", 
                        @"c:\Users\Jon\Test\foo.txt");
}

using (WebClient client = new WebClient())
{
        client.DownloadFile("http://www.czce.com.cn/cn/DFSStaticFiles/Future/2018/20180821/FutureDataClearParams.txt", 
                            "c:\\Users\\Jon\\Test\\foo.txt");
}

您可以执行其他文件I / O操作,例如

if(!Directory.Exists("c:\\Users\\Jon\\Test\\")
    Directory.CreateDirectory("c:\\Users\\Jon\\Test\\");

...