HTTP Post

// testHttp003.cpp : 定义控制台应用程序的入口点。
//#include "stdafx.h"// webrequest.cpp : 定义控制台应用程序的入口点。
//#include "stdafx.h"
#include <string>
#include <fstream>
#include <winsock2.h> 
#include <stdio.h>
#pragma comment(lib, "WS2_32")   
using namespace std;namespace DEVWEB
{struct ACloseSkt{ACloseSkt(SOCKET h){m_h = h;}~ACloseSkt(){if(m_h)closesocket(m_h);m_h = 0;}SOCKET m_h;};struct RequestParam{bool            bPost;      //是否为POST请求const char*     pPostData;  //为POST数据,需要自已维护内存;unsigned int    uiPostLen;  //为POST数据长度,主要为了兼容可以上传二进制数据,一般请求就为pPostData字符串长度const char*     pReferer;   //请求的引用页面,就是来源页面const char*     pAttachHeader;//附加自定义头bool            bBlock;     //true=阻塞式连接,false=异步连接,*******注意:使用异步必须设置超时时间unsigned int    uiTimeout;  //异步超时 单位msRequestParam(){memset(this,0, sizeof(RequestParam));bBlock = true; bPost = false;}};void GetRealIP(string& ip, string& retip){retip = ip;unsigned long t = inet_addr((char*)(LPCSTR)ip.c_str());if (t == INADDR_NONE){hostent* hostInfo = gethostbyname((char*)(LPCSTR)ip.c_str());if (hostInfo){struct in_addr *addr;addr = (struct in_addr*)hostInfo->h_addr_list[0];if(addr!=NULL){retip = inet_ntoa(*addr);}}else{printf("GetRealIP can't parse domain %s\n",ip.c_str());}}}////szURL 一个完整的URL仅HTTP,HTTPS不支持,可以包含GET参数,如index.php?username=test//response 为请求返回的结果,包含HTTP头信息//pRP为附加参数,完成更复杂的请求///bool WebRequest( const char* szURL, std::string& response, RequestParam* pRP = 0){if (!szURL ) return false;WORD wVersionRequested;WSADATA wsaData;int vMMVersion=MAKEWORD(1,1);int res = WSAStartup(vMMVersion, &wsaData);SOCKET hSkt = socket(AF_INET,SOCK_STREAM,res);if (INVALID_SOCKET == hSkt){ OutputDebugString("WebRequest socket create failed!\n");return false;}ACloseSkt askt(hSkt);//是否设置为异步if ( pRP && pRP->bBlock == false){ULONG nMode = 1;ioctlsocket( hSkt,FIONBIO,&nMode);}string strURL(szURL),host,ip,requrl;unsigned int nport = 80;if ( stricmp(string(strURL.substr(0,7)).c_str(), "http://") ){OutputDebugString("WebRequest parse url error, need http://\n");return false;}else{  //parse url;size_t nMH = strURL.find(':',8);size_t nPre =strURL.find('/',8);if ( nMH == -1 && nPre == -1){host    = strURL.substr(7);requrl  = "/";}else if ( nPre != -1){if ( nMH != -1 && nPre > nMH){host = strURL.substr(7,nMH-7);nport = atoi( string(strURL.substr(nMH+1, nPre-1-nMH)).c_str());}else{host = strURL.substr(7,nPre-7);}requrl = strURL.substr(nPre);}else if (nMH != -1){host = strURL.substr(7, nMH-7);nport= atoi( string(strURL.substr(nMH+1)).c_str());requrl = "/";}}GetRealIP(host,ip);sockaddr_in addr;addr.sin_addr.S_un.S_addr = inet_addr( ip.c_str() );addr.sin_port = htons(nport);addr.sin_family = AF_INET;if (pRP && pRP->bBlock){if (SOCKET_ERROR == connect( hSkt, (sockaddr*)&addr,sizeof(addr))){OutputDebugString("WebRequest connect server failed!\n");return false;}}else{if (SOCKET_ERROR == connect( hSkt, (sockaddr*)&addr, sizeof(addr))){if ( WSAGetLastError() == 10035 ){//connectioning}else{OutputDebugString("WebRequest connect server failed!\n");return false;}}DWORD dwTick = GetTickCount();do{fd_set    Set,WSet;FD_ZERO(&Set);FD_ZERO(&WSet);FD_SET(hSkt,&Set);FD_SET(hSkt,&WSet);timeval time;time.tv_sec = 0;time.tv_usec = 0;int nS = select(0, &Set, &WSet, NULL, &time);if( nS == SOCKET_ERROR ){OutputDebugString("WebRequest connect server failed!(SELECT)\n");return false;}else if(nS){break;//connect sucess.}else{if ( (GetTickCount() - dwTick) > pRP->uiTimeout ){//timeoutOutputDebugString("WebRequest connect server timeout!(SELECT)\n");return false;}}}while(true);}//fill header;string header;bool bSendBin = false;if (pRP){header.append( pRP->bPost ? "POST " : "GET ");header.append(requrl);header.append(" HTTP/1.1\r\n");header.append("host:");header.append(host);header.append("\r\nUser-Agent:Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)\r\n");header.append("Content-Type:application/x-www-form-urlencoded\r\n");header.append("Accept:text/html,application/xhtml+xml,*/*\r\nConnection:close\r\n");char szCSize[50];sprintf(szCSize,"Content-Length:%d\r\n\r\n",pRP->uiPostLen);header.append(szCSize);if (pRP->pPostData){if ( strlen(pRP->pPostData) <= pRP->uiPostLen){bSendBin = true;}else{header.append(pRP->pPostData);}}}else{header.append("GET ");header.append(requrl);header.append(" HTTP/1.1\r\n");header.append("host:");header.append(host);header.append("\r\nUser-Agent:Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Trident/5.0)\r\n");header.append("Content-Type:application/x-www-form-urlencoded\r\n");header.append("Accept:text/html,application/xhtml+xml,*/*\r\nConnection:close\r\n\r\n");}size_t headerlen = header.size();size_t nSendLen = 0;const char* pdata = header.c_str();DWORD dwTick = GetTickCount();do{int n = send(hSkt, pdata + nSendLen, int(headerlen - nSendLen),0);if( n == SOCKET_ERROR ){if ( 10035 == WSAGetLastError()){//wait for send.if (pRP && GetTickCount() - dwTick >= pRP->uiTimeout){OutputDebugString("WebRequest send failed!\n");return false;}Sleep(10);}else{OutputDebugString("WebRequest send failed!\n");return false;}}else if( n==0){OutputDebugString("WebRequest send failed!\n");return false;break;}else{dwTick = GetTickCount();nSendLen += n;}} while (nSendLen < headerlen );if(bSendBin && pRP && pRP->pPostData && pRP->uiPostLen){nSendLen = 0;pdata = (const char*) pRP->pPostData;dwTick = GetTickCount();do{int n = send(hSkt, pdata + nSendLen, pRP->uiPostLen - nSendLen,0);if( n == SOCKET_ERROR ){if ( 10035 == WSAGetLastError()){//wait for send.if (pRP && GetTickCount() - dwTick >= pRP->uiTimeout){OutputDebugString("WebRequest send timeout!\n");return false;}Sleep(10);}else{OutputDebugString("WebRequest send failed!\n");return false;}}else if( n==0){OutputDebugString("WebRequest send failed!\n");return false;break;}else{dwTick = GetTickCount();nSendLen += n;}} while (nSendLen < pRP->uiPostLen );}//recv responsechar    buf[2049];string& request = response;request.clear();dwTick = GetTickCount();do{int n = recv(hSkt, buf,2048,0);if ( n == SOCKET_ERROR ){if ( 10035 != WSAGetLastError() ){OutputDebugString("DevWebService recv failed!\n");return 0;break;}else{if (pRP && GetTickCount() - dwTick >= pRP->uiTimeout){OutputDebugString("WebRequest recv timeout!\n");return false;}Sleep(10);}}else if( n == 0 ){//host close recv finishOutputDebugString("WebRequest Recv FINISHED!\n");break;}else{buf[n] = '\0';request.append(buf);    dwTick = GetTickCount();}} while (true);return true;}string GetHtml(string response){int conn_index=response.find("Connection:");string str=response.substr(conn_index);int line_index=str.find("\r\n");if(line_index!=-1){string contect=str.substr(line_index);//MessageBox(NULL,contect.c_str(),"ok",0);return contect;}return str;}
}
//UTF8编码
std::string utf2ansi(LPCSTR pszSrc)
{int nSize = MultiByteToWideChar(CP_UTF8, 0, (LPCSTR)pszSrc, -1, 0, 0);if(nSize <= 0) return NULL;WCHAR *pwsz = new WCHAR[nSize+1];if( NULL == pwsz) return NULL;MultiByteToWideChar(CP_UTF8, 0,(LPCSTR)pszSrc, nSize, pwsz, nSize);pwsz[nSize] = 0;char *psz = new char[nSize+1];WideCharToMultiByte(CP_ACP, 0, pwsz, nSize, psz, nSize, NULL, NULL);string str = psz;delete pwsz;delete psz;return str;
}int WideToUTF8(const std::string& _src,string fileName)
{int nBufSize = WideCharToMultiByte(CP_UTF8, 0, (LPCWSTR)_src.c_str(),-1, NULL, 0, 0, FALSE);char *szBuf = new char[nBufSize];WideCharToMultiByte(CP_UTF8, 0, (LPCWSTR)_src.c_str(),-1, szBuf, nBufSize, 0, FALSE);ofstream fout(fileName.c_str(),std::ios::out);//std::ios::binary fout.write(szBuf,nBufSize);fout.close();//std::string strRet(szBuf);//delete []szBuf;//szBuf = NULL;/** 写出宽字符串时这样用,内容在text中if(fopen_s( &pFile, "log.txt","a")!=0){std::string str = WideToUTF8( text );fputs(str.c_str(), pFile);fputc('\n',pFile);fclose(pFile);}*/return 0;
}int writeToTxt(string fileName,string data)
{ofstream fout(fileName.c_str(),std::ios::out);//std::ios::binary //0xef, 0xbb, 0xbf, //fout.write((char*)0x00ef,4);//fout.write((char*)0x00bb,4);//fout.write((char*)0x00bf,4);	//unsigned char uniTxt[] = {0xFF, 0xFE};          // Unicode file header  //unsigned char endianTxt[] = {0xFE, 0xFF};       // Unicode big endian file header  //unsigned char utf8Txt[] = {0xEF, 0xBB, 0xBF};   // UTF_8 file header  fout<<0xEF<<0xBB<<0xBF<<endl;fout.write(data.c_str(),data.length());fout.close();return 0;
}
int writeToTxt002(string fileName,string data)
{FILE *file;file=fopen(fileName.c_str(),"rw");if(file==NULL){printf("打开失败!\n");return -1;}fwrite(data.c_str(),data.length(),1,file);fclose(file);return 0;
}
int _tmain(int argc, _TCHAR* argv[])
{string rs;char post[80];sprintf(post,"username=xj&userpassword=123456");DEVWEB::RequestParam rp;rp.bPost = false;rp.pPostData = post;rp.uiPostLen = strlen(post);if ( DEVWEB::WebRequest( "http://www.baidu.com", rs,&rp)){rs=utf2ansi(rs.c_str());MessageBox(NULL,rs.c_str(),"ok",0);string html=DEVWEB::GetHtml(rs);MessageBox(NULL,html.c_str(),"ok",0);writeToTxt("test.html",html);}else{MessageBox(NULL,"错误","ok",0);}getchar();return 0;
}

 

转载于:https://www.cnblogs.com/ankeyliu/p/4531218.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/471944.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

LeetCode 1961. 检查字符串是否为数组前缀

文章目录1. 题目2. 解题1. 题目 给你一个字符串 s 和一个字符串数组 words &#xff0c;请你判断 s 是否为 words 的 前缀字符串 。 字符串 s 要成为 words 的 前缀字符串 &#xff0c;需要满足&#xff1a;s 可以由 words 中的前 k&#xff08;k 为 正数 &#xff09;个字符…

php怎样加速,php 提速

php 提速2007-08-13 10:06这篇杂文翻译整理自网络各路文档资料(见最末的参考资料)&#xff0c;尤其是 Ilia Alshanetsky (佩服之至) 在多个 PHP 会议上的演讲&#xff0c;主要是各类提高 PHP 性能的技巧。为求精准&#xff0c;很多部分都有详细的效率数据&#xff0c;以及对应的…

ios UIScrollView 基础属性

转 UIScrollView 原理 在滚动过程当中&#xff0c;其实是在修改原点坐标。当手指触摸后, scroll view会暂时拦截触摸事件,使用一个计时器。假如在计时器到点后没有发生手指移动事件&#xff0c;那么 scroll view 发送 tracking events 到被点击的 subview。假如在计时器到点前发…

LeetCode 1962. 移除石子使总数最小(优先队列)

文章目录1. 题目2. 解题1. 题目 给你一个整数数组 piles &#xff0c;数组 下标从 0 开始 &#xff0c;其中 piles[i] 表示第 i 堆石子中的石子数量。 另给你一个整数 k &#xff0c;请你执行下述操作 恰好 k 次&#xff1a; 选出任一石子堆 piles[i] &#xff0c;并从中 移除…

ubuntu自定义安装里怎么选_中央空调到底应该怎么选?小户型也能安装中央空调?行家说实话了...

▲ 点击蓝字“建通舒适家”&#xff0c;你想知道的空调问题&#xff0c;答案全在这里啦&#xff01;中央空调到底应该怎么选&#xff1f;小户型也能安装中央空调&#xff1f;行家说实话了现在业主装修大多都是对中央控空调一知半解&#xff0c;出现很多种的情况就是&#xff1a…

php辅助框架,【PHP开发框架】Laravel框架中辅助函数:optional ()函数的介绍

laravel框架中的辅助函数有很多&#xff0c;那么&#xff0c;在 Laravel 新版本中又有什么非常好用的辅助函数呢&#xff1f;接下来的这篇文章中&#xff0c;ki4网将给大家介绍一个非常有用的辅助方法&#xff1a;optional()函数&#xff0c;这个函数的用处到底是什么呢&#x…

python 清除字符串中的 emoji 表情

https://pypi.org/project/emoji/ pip install emoji字符串中间有 emoji 表情&#xff0c;替换掉。 text "&#x1f430;贝贝有点甜&#x1f430;" res emoji.demojize(text) # :rabbit_face:贝贝有点甜:rabbit_face:# 正则表达式替换为 r"想换的字符串&quo…

Linux CentOS7/RHEL7关闭ctrl+alt+delete功能键

这是本人测试的经过&#xff0c;纯粹记录来看看&#xff0c;最终解决方法在最后面&#xff0c;中间讲的是遇到的一些坑&#xff0c;可以略过不看&#xff01;&#xff01; 本人操作经验&#xff0c;转载请表明出处&#xff1a;http://www.cnblogs.com/huangjc/p/4536620.html L…

三角形css_纯 CSS 实现绘制各种三角形(各种角度)

一、前言三角形实现原理&#xff1a;宽度width为0&#xff1b;height为0&#xff1b;&#xff08;1&#xff09;有一条横竖边&#xff08;上下左右&#xff09;的设置为border-方向&#xff1a;长度 solid red&#xff0c;这个画的就是底部的直线。其他边使用border-方向&#…

java 排秩,lamd(java lambda表达式)

lamb n.羔羊&#xff0c; 小羊羔羊肉[皮](对孩子等的爱称)好宝宝&#xff0c; 小乖乖年幼、天真无邪的人&#xff1b; 羔羊般柔弱[温顺]的人[俚]容易上当的人(尤指在证券交易方面)[the Lamb ]【宗.lamd是什么意思land n. 国土&#xff1b;陆地&#xff1b;地面lamb n. 羔羊&…

LeetCode 1826. 有缺陷的传感器(枚举)

文章目录1. 题目2. 解题1. 题目 实验室里正在进行一项实验。为了确保数据的准确性&#xff0c;同时使用 两个 传感器来采集数据。 您将获得2个数组 sensor1 and sensor2&#xff0c;其中 sensor1[i] 和 sensor2[i] 分别是两个传感器对第 i 个数据点采集到的数据。 但是&#…

今天携程出事了:让我们来学习下http的响应码

就在今天&#xff0c;2015年5月28日&#xff0c;中国最大的旅游机票预订网站--携程网粗大事了。据传携程网的数据库被人物理删除了&#xff0c;而容灾备份的数据又无法正常使用&#xff0c;服务器全面遭受瘫痪。每小时给携程带来的损失约100万美元。巴拉巴拉&#xff0c;作为中…

java 删除txt,如何从.txt文件中删除2个值

if "A" in columns and int(columns[5]) < int(columns[3]):print(columns)print (columns[3]) - (columns[5])我在这做错了什么&#xff1f;不记得我最近开始编码 .这是完整的代码&#xff1a;import csvFILE_NAME "paintingJobs.txt" #I use this so…

LeetCode 1708. 长度为 K 的最大子数组

文章目录1. 题目2. 解题1. 题目 在数组 A 和数组 B 中&#xff0c;对于第一个满足 A[i] ! B[i] 的索引 i &#xff0c;当 A[i] > B[i] 时&#xff0c;数组 A 大于数组 B。 例如&#xff0c;对于索引从 0 开始的数组&#xff1a; [1,3,2,4] > [1,2,2,4] &#xff0c;因…

CSS3(animation, trasfrom)总结

CSS3(animation, trasfrom)总结 1. Animation 样式写法: 格式: -浏览器内核-keyframes 样式名 {} 标准写法(chrome safari不支持 keyframes [样式名] { 0% {left: 10px ; top : 20px;} 50% {left: 20px ; top : 30px;} 100% {left: 10px ; top : 20px;} }; Firefox -mz-keyfra…

LeetCode 1554. 只有一个不同字符的字符串(枚举)

文章目录1. 题目2. 解题1. 题目 给定一个字符串列表 dict &#xff0c;其中所有字符串的长度都相同。 当存在两个字符串在相同索引处只有一个字符不同时&#xff0c;返回 True &#xff0c;否则返回 False 。 进阶&#xff1a;你可以以 O(n*m) 的复杂度解决问题吗&#xff1…

matlab多径信道模型,多径时变信道模型的仿真与性能分析课程设计(样例3)

《多径时变信道模型的仿真与性能分析课程设计.doc》由会员分享&#xff0c;可免费在线阅读全文&#xff0c;更多与《多径时变信道模型的仿真与性能分析课程设计》相关文档资源请在帮帮文库(www.woc88.com)数亿文档库存里搜索。1、形与输入信号波形越接近。因为信道幅频特性不理…

slice 转byte go_一文告诉你神奇的Go内建函数源码在哪里

Go内建函数源码&#xff0c;我好像在哪里见过你。 - 佚名1. 何为Go内建函数众所周知&#xff0c;Go是最简单的主流编程语言之一&#xff0c;截至Go 1.15版本&#xff0c;Go语言的关键字的规模依旧保持在25个&#xff1a;很多刚入门的gopher可能会问&#xff1a;像bool、byte、e…

modelsim 的高效使用

大概的思路&#xff1a; 1、往modelsim 添加仿真库。 2、将Verilog 文件&#xff0c;testbench文件提出。建好文件夹。比如uart仿真&#xff1a; uart_sim文件夹下&#xff1a;rtl文件夹&#xff0c;test_bench文件夹。test_bench文件夹下sim文件夹。 3、打开modelsim&#xff…

LeetCode 1586. 二叉搜索树迭代器 II(数组+栈)

文章目录1. 题目2. 解题1. 题目 实现二叉搜索树&#xff08;BST&#xff09;的中序遍历迭代器 BSTIterator 类&#xff1a; BSTIterator(TreeNode root) 初始化 BSTIterator 类的实例。 二叉搜索树的根节点 root 作为构造函数的参数传入。 内部指针使用一个不存在于树中且小于…