怎么用C实现Http POST功能向Http服务器上传文件

怎么用C实现Http POST功能向Http服务器上传文件,第1张

用socket就行了。

和服务器建立请求。

然后发送请求报文"\r\n\r\n"结束之后是数据。

post分为,application/x-www-form-urlencoded和multipart/form-data boundary=

要是上传文件,就得使用multipart/form-data boundary=...

服务器那边根据boundary来解析出数据。

CInternetSession m_winet(NULL,1,INTERNET_OPEN_TYPE_DIRECT,NULL,NULL,0)

CHttpConnection *pConnection

CHttpFile *pFile

pConnection = m_winet.GetHttpConnection("expert.csdn.net")

CString strHeaders, tempStr,str

str="name=*******&pass=******&type=1"

//strHeaders = _T("Content-Type: application/x-www-form-urlencoded")

pFile=pConnection->OpenRequest(CHttpConnection::HTTP_VERB_POST,

"/member/logon.asp")

pFile->AddRequestHeaders("Accept: image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-powerpoint, application/vnd.ms-excel, application/msword, */*")

pFile->AddRequestHeaders("User-Agent: Mozilla/4.0 (compatibleMSIE 5.01Windows NT 5.0)")

pFile->AddRequestHeaders("Content-Type: application/x-www-form-urlencoded")

pFile->SendRequest(

NULL,0,

(LPVOID)(LPCTSTR)str, str.GetLength())

上面是登陆部分,然后用InternetGetCookie获得COOKIES以后把它AddRequestHeaders里面再SendRequest出去OpenRequest(CHttpConnection::HTTP_VERB_POST,

"/member/logon.asp")里的CHttpConnection::HTTP_VERB_POST控制是POST还是GET,最好截包分析一下。发帖子需要加COOKIES。

以下方法用CURL提交表单

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++绿色的三角编译运行。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11650485.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-17
下一篇 2023-05-17

发表评论

登录后才能评论

评论列表(0条)

保存