【汇编】服务器端下载文件并保存

第一种方法

http get

string urlPath = "http://www........";//写个网络资源路径(自己写)

    string localPath = @"D:\BianZhen.mov";

      /// <summary>

    /// 下载文件

    /// </summary>

    IEnumerator DownLoadFile(string url)

    {

        HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url);

        request.Method = "GET";

        HttpWebResponse hw = (HttpWebResponse)request.GetResponse();

        Stream stream = hw.GetResponseStream();

        FileStream fileStream = new FileStream(localPath, FileMode.Create, FileAccess.Write);

        long length = hw.ContentLength;

        long currentNum = 0;

        decimal currentProgress = 0;

 

        while (currentNum < length)

        {

            byte[] buffer = new byte[1024];

            currentNum += stream.Read(buffer, 0, buffer.Length);

            fileStream.Write(buffer, 0, buffer.Length);

            if (currentNum % 1024 == 0)

            {

                currentProgress = Math.Round(Convert.ToDecimal(Convert.ToDouble(currentNum) / Convert.ToDouble(length) * 100), 4);

                Debug.Log("当前下载文件大小:" + length.ToString() + "字节   当前下载大小:" + currentNum + "字节 下载进度" + currentProgress.ToString() + "%");

            }

            else

            {

                Debug.Log("当前下载文件大小:" + length.ToString() + "字节   当前下载大小:" + currentNum + "字节"+ "字节 下载进度" + 100 + "%");

            }

            currentnn = currentProgress;

            yield return false;

        }

        hw.Close();

        stream.Close();

        fileStream.Close();

    }

    decimal currentNumShow;

    GUIStyle guistyle = new GUIStyle();

    void OnGUI()

    {

        guistyle.fontSize = 80;

        GUI.Label(new Rect(50, 50, 50, 50), currentNumShow.ToString(), guistyle);

    }

 

第二种方法

 

www

    string urlPath = "http://www.....";//资源网络路径(自己写)

    string file_SaveUrl = @"D:\test.rar";//资源保路径

    FileInfo file; 

    void Start ()

    {

        file = new FileInfo(file_SaveUrl);

        Debug.Log(file_SaveUrl);

        StartCoroutine(DownFile(urlPath));

    }

   

    /// <summary>

    /// 下载文件

    /// </summary>

    IEnumerator DownFile(string url)

    {

        WWW www = new WWW(url);

        yield return www;

        if (www.isDone)

        {

            Debug.Log("下载完成");

            byte[] bytes = www.bytes;

            CreatFile(bytes);

        }

    }

    /// <summary>

    /// 创建文件

    /// </summary>

    /// <param name="bytes"></param>

    void CreatFile(byte[] bytes)

    {

        Stream stream;

        stream = file.Create();

        stream.Write(bytes, 0, bytes.Length);

        stream.Close();

        stream.Dispose();

}

接收www的数据流后,判断文件是否已经存在

//定义文件流

Strem str;
FileInfo file= new FileInfo(Application.persistentDataPath+ "/" +想要保存的资源的名字);
//判断文件是否存在

if(!file.Exists)

{

//如果不存在就创建文件

str=file.Creat();

}

else

{

return;

}

//文件写入

str.Write(上面的字节数组model , 0  , 上面的字节长度);

//写入之后记得关闭流操作。

str.Close();

str.Dispose();

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值