看流星社区

 找回密码
 注册账号
查看: 2115|回复: 0

两种实现下载的代码

[复制链接]

该用户从未签到

发表于 2017-6-2 13:28:47 | 显示全部楼层 |阅读模式
实现下载的代码:
#include <UrlMon.h>
#include <WinInet.h>

#pragma comment(lib,"wininet")


void CFileDownloadDlg::OnBnClickedBtnDownload()
{
        // 使用UrlDownloadToFile函数
        HRESULT hRet = URLDownloadToFile(NULL,"http://www.baidu.com/img/baidu_sylogo1.gif","c:\\temp\\1.gif",0,NULL);
        if (S_OK != hRet)
        {
                MessageBox("下载失败");
                return;
        }

        //使用windows internet 库
        HINTERNET hSession = InternetOpen("", INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
        if (hSession != NULL)
        {
                HINTERNET hLink2 = InternetOpenUrl(hSession, "http://www.baidu.com/img/baidu_sylogo1.gif", NULL, 0, INTERNET_FLAG_DONT_CACHE, 0);
                if (hLink2 != NULL)
                {
                        BYTE temp[1024];
                        DWORD dwNum = 1;
                        FILE *hFile;

                        if ((hFile = fopen("c:\\temp\\2.gif", "wb")) != NULL)
                        {
                                while (dwNum>0)
                                {
                                        InternetReadFile(hLink2, temp, 1024, &amp;dwNum);
                                        fwrite(temp, sizeof(char), dwNum, hFile);
                                }
                                fclose(hFile);
                                MessageBox("download finished...");

                        }

                        InternetCloseHandle(hLink2);
                        hLink2 = NULL;
                }
                InternetCloseHandle(hSession);
                hSession = NULL;
        }
}
点击按钮快速添加回复内容: 支持 高兴 激动 给力 加油 苦寻 生气 回帖 路过 感恩
您需要登录后才可以回帖 登录 | 注册账号

本版积分规则

小黑屋|手机版|Archiver|看流星社区 |网站地图

GMT+8, 2024-3-19 14:50

Powered by Kanliuxing X3.4

© 2010-2019 kanliuxing.com

快速回复 返回顶部 返回列表