首页 > 代码库 > C++ 获取URL图片、html文件,CInternetSession 【转】

C++ 获取URL图片、html文件,CInternetSession 【转】

http://blog.csdn.net/gnixuyil/article/details/7688439

获取网络图片

[cpp] view plain copy
  1. CString URL="http://www.google.com.hk/images/srpr/logo3w.png"  
  2.   
  3. CInternetSession session;  
  4. CHttpFile *httpFile = (CHttpFile *)session.OpenURL(URL);  
  5. CStdioFile imgFile;  
  6. char buff[1024];    // 缓存  
  7.   
  8. imgFile.Open("图片名字.png", CFile::modeCreate | CFile::modeWrite | CFile::typeBinary);  
  9.   
  10. DWORD dwStatusCode;  
  11. httpFile->QueryInfoStatusCode(dwStatusCode);  
  12.   
  13. if(dwStatusCode == HTTP_STATUS_OK) {  
  14.     int size=0;  
  15.     do {  
  16.         size = httpFile->Read(buff,1024);    // 读取图片  
  17.         imgFile.Write(buff,size);  
  18.     }while(size > 0);  
  19. }  
  20.   
  21. httpFile->Close();  
  22. session.Close();   


获取URL的html

[cpp] view plain copy
  1. CInternetSession session;  
  2. CHttpFile *httpFile = (CHttpFile *)session.OpenURL(m_URL);  
  3.   
  4. DWORD dwStatusCode;  
  5. httpFile->QueryInfoStatusCode(dwStatusCode);  
  6.   
  7. CString getdata=http://www.mamicode.com/_T("");  
  8.   
  9. if(dwStatusCode == HTTP_STATUS_OK) {  
  10.     CString line_data=http://www.mamicode.com/_T("");  
  11.     while(httpFile->ReadString(line_data)) {   
  12.          getdata += line_data;          // 读取html  
  13.     }  
  14.      getdata.TrimRight();  
  15. }  
  16.   
  17. httpFile->Close();   // html数据已经放在getdata中  
  18. session.Close();  
  19.   
  20. // 如果 getdata 中保存的是UTF_8网页(可以看html的meta字段)  
  21.   
  22. strCoding cfm;  // 编码转换类,详情请看下方连接  
  23.   
  24. string temp = (LPCSTR)getdata.GetBuffer();  // 网页数据,转换成string型  
  25. string output;  
  26. // UTF_8转GB2312,让MFC控件能显示  
  27. cfm.UTF_8ToGB2312(output,(char *)temp.data(),strlen(temp.data()));  
  28.   
  29. // 若MFC字符集为Unicode的话,还需要将多字节转为宽字节  
  30. temp = output;  
  31. DWORD dwNum = MultiByteToWideChar (CP_ACP, 0, temp.c_str(), -1, NULL, 0);  
  32. wchar_t *pwText;  
  33. pwText = new wchar_t[dwNum];  
  34. MultiByteToWideChar (CP_ACP, 0, temp.c_str(), -1, pwText, dwNum);  
  35.   
  36. // 取得转换后结果 m_data 用于显示  
  37. m_data = pwText;  
  38. delete []pwText;  


编码转换类: http://blog.csdn.net/gnixuyil/article/details/7688469

C++ 获取URL图片、html文件,CInternetSession 【转】