如何用C/C++模拟post提交数据,获得http相应。5
发布网友
发布时间:2023-09-13 14:23
我来回答
共5个回答
热心网友
时间:2024-12-02 03:36
以下方法用CURL提交post表单
1. 编译环境.
安装vs2010或其他版本. vs2010 express版也可以。不要低于vc6.
2. 搜索curl-7.25.0.zip,下载。
解压到c:\curl-7.25.0
打开Visual Studio Command Prompt (2010)
cd \curl-7.25.0\winbuild
nmake /f Makefile.vc mode=dll USE_SSSPI=no ENABLE_IDN=no
编译成功后 cd ..\builds
到一个名字为libcurl-....lib的子目录里找到libcurl.dll和libcurl.lib, 保存到一个目录下备份,下面要用。
3. 打开vc++ 2010, File->New project,选Win32 Project, 输入一个项目名。下面点Next,勾上Console Application和Empty Project.
4. 配置项目
到我的文档下找到vs2010 projects目录,找到 solution名字\项目名字 目录,
把curl-7.25.0目录下的include目录拷贝到项目目录下
把2备份好的libcurl.dll和libcurl.lib拷贝到项目目录.
在vc++中右键点击项目名(或Alt+F7), 点开Configuration Properties, 点vc++directories
点Include Directories, 点Edit, 添加$(ProjectDir)include 确定
在点击左侧的Linker, 点Input,点Additional Dependences, 点Edit, 添加一行$(ProjectDir)\libcurl.lib 确定
5. 代码。
右键点项目名字,Add New Item->C++ File, name写main.c, 输入代码:
/* 抱歉,这里不好贴链接,版权没法贴,版权去看http-post.c */
#include <stdio.h>
#include <curl/curl.h>
#include <stdlib.h>
int main(void)
{
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
/* First set the URL that is about to receive our POST. This URL can
just as well be a https:// URL if that is what should receive the
data. */
curl_easy_setopt(curl, CURLOPT_URL, "这里写网址");
/* Now specify the POST data */
curl_easy_setopt(curl, CURLOPT_POSTFIELDS, "name=daniel&project=curl");
/* Perform the request, res will get the return code */
res = curl_easy_perform(curl);
/* always cleanup */
curl_easy_cleanup(curl);
system("pause");
}
return 0;
}
点vc++绿色的三角编译运行。
热心网友
时间:2024-12-02 03:36
wget是用C语言编写的一种命令行式浏览器,可以下载全部的源代码,它不是模拟POST提交数据,而是完整地实现了所有POST和GET功能。
这里是GNU自由版本的WGET源程序下载:
http://www.gnu.org/software/wget/追问要的是模拟post提交啊
追答不是一回事儿吗!!!只是告诉你这个功能更强大,更清晰
热心网友
时间:2024-12-02 03:37
wget是用C语言编写的一种命令行式浏览器,可以下载全部的源代码,它不是模拟POST提交数据,而是完整地实现了所有POST和GET功能
热心网友
时间:2024-12-02 03:38
http协议有不少内容。post是把数据写到协议头的后面。
比如要传输“abc”
首先是头部分,后面是数据部分
POST /aaa.asp HTTP1.1
......
\r\n\r\n
abc
类型这样的数据用tcp传就ok
热心网友
时间:2024-12-02 03:38
用libcurl, win下用vc++的使用方法在这里。
http://zhidao.baidu.com/question/420629073.html
如果在Linux下,更简单。追问还要检测出成功登陆才行,并且导出登录日志。
追答看 curl-7.25.0/docs/examples/url2file.c
不会有支持所有“成功登陆“的函数。你需要自己判断,如: 说查找特征字符串。网站返回的数据在自定义的WRITEFUNCTION里。
你可能需要打开对Cookie的支持。curl_easy_setopt(handle, CURLOPT_COOKIEFILE, "");
更多去libcurl主页看文档和api. 搜索libcurl.