来自url的紧凑框架下载文件 [英] compact framework download file from url

查看:164
本文介绍了来自url的紧凑框架下载文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要替换WebRequestFactory,这是做什么的?有人可以帮我做这个工作吗?

I need to replace WebRequestFactory, what is this doing? Can someone help me make this work?

   Public Shared Sub download_file()
        Dim wr As HttpWebRequest = CType(WebRequestFactory.Create("http://www.test.com/test.jpg"), HttpWebRequest)
        Dim ws As HttpWebResponse = CType(wr.GetResponse(), HttpWebResponse)
        Dim str As Stream = ws.GetResponseStream()
        Dim inBuf(100000) As Byte
        Dim bytesToRead As Integer = CInt(inBuf.Length)
        Dim bytesRead As Integer = 0
        While bytesToRead > 0
            Dim n As Integer = str.Read(inBuf, bytesRead, bytesToRead)
            If n = 0 Then
                Exit While
            End If
            bytesRead += n
            bytesToRead -= n
        End While
        Dim fstr As New FileStream("test.jpg", FileMode.OpenOrCreate, FileAccess.Write)
        fstr.Write(inBuf, 0, bytesRead)
        str.Close()
        fstr.Close()
    End Sub 'Main


推荐答案

请尝试以下代码:

public static void getfile(string url, string filename)
{

    try
    {
        string full_url = url + "/" + filename;

        HttpWebRequest httpRequest = (HttpWebRequest)WebRequest.Create(full_url);
        httpRequest.Credentials = CredentialCache.DefaultCredentials;

        HttpWebResponse httpResponse = (HttpWebResponse)httpRequest.GetResponse();

        System.IO.Stream dataStream = httpResponse.GetResponseStream();

        // Dim str As Stream = cdsMobileLibrary2.http_download.getfile(filename)

        //10 meg
        byte[] inBuf = new byte[10000001];
        int bytesToRead = Convert.ToInt32(inBuf.Length);
        int bytesRead = 0;
        while (bytesToRead > 0)
        {
           int n = dataStream.Read(inBuf, bytesRead, bytesToRead);
           if (n == 0)
           {
               break; // TODO: might not be correct. Was : Exit While
           }
           bytesRead += n;
           bytesToRead -= n;
        }

        FileStream fstr = new FileStream("\\My Documents\\" + filename, FileMode.OpenOrCreate, FileAccess.Write);
        fstr.Write(inBuf, 0, bytesRead);
        dataStream.Close();
        fstr.Close();


    }
    catch { }
}

这篇关于来自url的紧凑框架下载文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆