libcurl

1 libcurl是什么

libcurl是一个支持多个平台支持多个协议的数据传输客户端库。

2 我们可以用libcurl来做什么

可以用它来写库同服务器端交流。

3 libcurl怎么用

CURL *curl;

CURLcode res;

curl = curl_easy_init();

if (curl)

{

    curl_easy_setopt(curl, CURLOPT_URL, "http://www.baidu.com");

    res = curl_easy_perform(curl);

    curl_easy_cleanup();

}

posted @ 2017-03-29 14:46  PhoenixTree(梧桐树)  阅读(183)  评论(0编辑  收藏  举报