博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CInternetSession的简单使用
阅读量:4886 次
发布时间:2019-06-11

本文共 2963 字,大约阅读时间需要 9 分钟。

1. CInternetSession的简单使用

CInternetSession session;

CHttpFile *file = NULL;

CString strURL = " http://www.20abcd.com";

CString strHtml = "”;   //存放网页数据

 

try{

       file = (CHttpFile*)session.OpenURL(strURL);

}catch(CInternetException * m_pException){

       file = NULL;

       m_pException->m_dwError;

       m_pException->Delete();

       session.Close();

       MessageBox("CInternetException");

}

CString strLine;

if(file != NULL){

       while(file->ReadString(strLine) != NULL){

       strHtml += strLine;

       }

 

}else{

       MessageBox("fail");

}

 

session.Close();

file->Close();

delete file;

file = NULL;

 

2. CInternetSession的代理与超时使用

CInternetSession session;

CHttpFile *file = NULL;  

 

INTERNET_PROXY_INFO proxyinfo;

proxyinfo.dwAccessType = INTERNET_OPEN_TYPE_PROXY;

proxyinfo.lpszProxy ="211.104.243.73:8080";

proxyinfo.lpszProxyBypass = NULL;

session.SetOption(INTERNET_OPTION_PROXY,(LPVOID)&proxyinfo,

sizeof(INTERNET_PROXY_INFO));

 

session.SetOption(INTERNET_OPTION_CONNECT_TIMEOUT, 5000);      // 5秒的连接超时

session.SetOption(INTERNET_OPTION_SEND_TIMEOUT, 1000);           // 1秒的发送超时

session.SetOption(INTERNET_OPTION_RECEIVE_TIMEOUT, 7000);        // 7秒的接收超时

session.SetOption(INTERNET_OPTION_DATA_SEND_TIMEOUT, 1000);     // 1秒的发送超时

session.SetOption(INTERNET_OPTION_DATA_RECEIVE_TIMEOUT, 7000);       // 7秒的接收超时

session.SetOption(INTERNET_OPTION_CONNECT_RETRIES, 1);          // 1次重试

 

try{

       file = (CHttpFile*)session.OpenURL("http://www.163.com",1,

INTERNET_FLAG_TRANSFER_ASCII|INTERNET_FLAG_RELOAD|INTERNET_FLAG_DONT_CACHE);

}catch(CInternetException * m_pException){

       file = NULL;

       m_pException->m_dwError;

       m_pException->Delete();

       session.Close();

       MessageBox("CInternetException");

       return;

}

CString strLine;

if(file != NULL){

       while(file->ReadString(strLine) != NULL){

              MessageBox(strLine);

       }

}else{

       MessageBox("fail");

}

file->Close();

session.Close();

 

3. CInternetSessionPOST使用

CInternetSession m_InetSession(_T("session"),

       0,

       INTERNET_OPEN_TYPE_PRECONFIG,

       NULL,

       NULL,

       INTERNET_FLAG_DONT_CACHE);     //设置不缓冲

CHttpConnection* pServer = NULL;

CHttpFile* pFile = NULL;

CString strHtml = "";

CString strRequest = "name=123&pwd=321\r\n"; //POST过去的数据

CString strHeaders = "Accept: */*\r\nReferer: : zh-cn\r\nContent-Type: application/x-www-form-urlencoded\r\nAccept-Encoding: gzip, deflate\r\nUser-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; Maxthon; .NET CLR 1.1.4322; .NET CLR 2.0.50727)";

 

try{

       INTERNET_PORT nPort; //端口

       nPort=80;

       pServer = m_InetSession.GetHttpConnection("www.goodwaiter.com", nPort);

       pFile = pServer->OpenRequest(CHttpConnection::HTTP_VERB_POST,"/");

       pFile->AddRequestHeaders(strHeaders);

 

       pFile->SendRequestEx(strRequest.GetLength());

       pFile->WriteString(strRequest); //重要-->m_Request 中有"name=aaa&name2=BBB&..."

       pFile->EndRequest();

       DWORD dwRet;

       pFile->QueryInfoStatusCode(dwRet);

 

       if (dwRet == HTTP_STATUS_OK){

              CString strLine;

              while ((nRead = pFile->ReadString(strLine))>0)

              {

                     strHtml += strLine;

              }

       }    

       delete pFile;

       delete pServer;

}

catch (CInternetException* e){

       e->m_dwContext;

}

转载于:https://www.cnblogs.com/lgh1992314/p/5834854.html

你可能感兴趣的文章
10.从远程仓库中抓取与拉取
查看>>
在可编辑datagrid中,使用my97日期控件
查看>>
每日一小练——按字典顺序列出全部排列
查看>>
The 16th tip of DB Query Analyzer
查看>>
ftoa浮点型转换成字符串
查看>>
rabbitMQ学习(六)
查看>>
迅为4412开发板学习之win8下基础软件的安装和学习
查看>>
初识web2py
查看>>
script & scriptreplay
查看>>
Docker最全教程——从理论到实战(二)
查看>>
HDU4109-instruction agreement(差分约束-最长路+建立源点,汇点)
查看>>
Promise 练习
查看>>
用户登陆--判断输入密码错误3次后冻结该账号
查看>>
无监督学习:Deep Generative Mode(深度生成模型)
查看>>
搭建本地pip源
查看>>
学习进度条
查看>>
UserControl关闭
查看>>
ASP.NET浏览器定义文件及IE兼容模式
查看>>
第三章程序的机器级表示 学习报告
查看>>
在iOS应用中直接打开系统的“设置”
查看>>