C++怎样用get方式向服务器发送数据?

用C++编写,使用get方式发送数据到网站上的PHP程序。... 用C++编写,使用get方式发送数据到网站上的PHP程序。 展开
 我来答
没思维5
推荐于2016-08-17 · 超过12用户采纳过TA的回答
知道答主
回答量:100
采纳率:0%
帮助的人:23.2万
展开全部
#include <CkHttp.h>
#include <CkString.h>
void ChilkatSample(void)
    {
    CkHttp http;
    bool success;
    // Any string unlocks the component for the 1st 30-days.
    success = http.UnlockComponent("Anything for 30-day trial");
    if (success != true) {
        printf("%s\n",http.lastErrorText());
        return;
    }
    // Send the HTTP GET and return the content in a string.
    CkString html;
    html = http.quickGetStr("http://www.w3.org/Protocols/");
    printf("%s\n",(const char *)html);
    }

FYI:http://www.example-code.com/vcpp/http_get.asp

匿名用户
2011-08-08
展开全部
char buff[1024*20+1];

typedef int (WINAPI ICEPUB_OPENURL)(char *currentUrlString,char *strHtmlText,int textMaxLen,char *strProxy);
ICEPUB_OPENURL *icePub_openUrl = 0;
HINSTANCE hDLLDrv = LoadLibrary("icePubDll.dll");
if(hDLLDrv)
{
icePub_openUrl =(ICEPUB_OPENURL *)GetProcAddress(hDLLDrv,"icePub_openUrl");
}
if(icePub_openUrl)
{
icePub_openUrl("http://www.baidu.com",buff,1024*20,"");
}
if(hDLLDrv)
FreeLibrary(hDLLDrv);
AfxMessageBox(buff);

char buffer[1024*20+1];

typedef int (WINAPI ICEPUB_GETURL)(char *hostAddress,char *strObject,char *m_param,char *Referer,char *strHtmlText,int textMaxLen,char *strProxy);
ICEPUB_GETURL *icePub_getUrl = 0;
HINSTANCE hDLLDrv = LoadLibrary("icePubDll.dll");
if(hDLLDrv)
{
icePub_getUrl = (ICEPUB_GETURL *)GetProcAddress(hDLLDrv, "icePub_getUrl");
}

if(icePub_getUrl)
icePub_getUrl("www.baidu.com","/","","",buffer,1024*20,"");
if(hDLLDrv)
FreeLibrary(hDLLDrv);
AfxMessageBox(buffer);

参考资料: icePubDll.dll百度之即可

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
年陽颜8695
2011-08-10 · TA获得超过5.9万个赞
知道大有可为答主
回答量:3.5万
采纳率:0%
帮助的人:4647万
展开全部
用get方法获取网页内容的代码与这个相类似。修改一下就可以了。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式