首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

上载网页

2012-10-09 
下载网页?BOOL Download( CString szURL, CString szDstFile ){BOOL res falseCInternetSession Sessio

下载网页

?

BOOL Download( CString szURL, CString szDstFile ){BOOL res = false;CInternetSession Session;CHttpFile *pHttpFile = NULL;try{pHttpFile = (CHttpFile*)Session.OpenURL(szURL);}catch(CInternetException * m_pException){pHttpFile = NULL;m_pException->m_dwError;m_pException->Delete();Session.Close();res = false;}CString strLine;CFile xmlFile;BOOL bResult = xmlFile.Open(szDstFile, CFile::modeCreate | CFile::modeWrite);if(pHttpFile != NULL && bResult){while(pHttpFile->ReadString(strLine) != NULL){xmlFile.Write(strLine, strLine.GetLength());}xmlFile.Close();res = true;}else{res = false;}Session.Close();pHttpFile->Close();delete pHttpFile;pHttpFile = NULL;return res;}
?

?

?

?

热点排行