用c++编写一段爬虫代码
时间: 2023-04-06 17:02:31 浏览: 134
如何使用C++开发爬虫
我可以回答这个问题。以下是一个简单的用C语言编写的爬虫代码示例:
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <curl/curl.h>
int main(void)
{
CURL *curl;
CURLcode res;
curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_URL, "https://www.example.com");
res = curl_easy_perform(curl);
if(res != CURLE_OK)
fprintf(stderr, "curl_easy_perform() failed: %s\n",
curl_easy_strerror(res));
curl_easy_cleanup(curl);
}
return 0;
}
这段代码使用了libcurl库,可以通过curl_easy_setopt函数设置URL,然后使用curl_easy_perform函数执行HTTP请求并获取响应。
阅读全文