問題:使用c++的crl庫寫一個獲取廣州市天氣情況的代碼,并且?guī)现形淖⑨尅?360智腦回復(fù):
```python
#include //引入Curl庫
#include //引入C++標準輸入輸出流
using namespace std;
int main() {
//創(chuàng)建一個CURL客戶端對象
CURL *curl_handle = curl_init();
//設(shè)置服務(wù)器IP地址和端口號
char url[] = "http://api.openweathermap.org/data/2.5/weather?q=guangzhou&appid="; //為OpenWeatherMap API密鑰
curl_setopt(curl_handle, CURLOPT_URL, url);
//設(shè)置要請求的數(shù)據(jù)格式
curl_setopt(curl_handle, CURLOPT_FORMATSTRING, "text/plain");
//發(fā)送HTTP GET請求到服務(wù)器并獲取響應(yīng)
curl_exec(curl_handle);
//等待服務(wù)器響應(yīng)完成
curl_wait_until_done(curl_handle);
//將服務(wù)器響應(yīng)內(nèi)容解析成JSON格式字符串
char response[1024];
curl_easy_getinfo(curl_handle, CURLINFO_RESPONSE_CODE, &code); //獲取HTTP響應(yīng)碼
curl_easy_strerror(curl_handle, code, response, sizeof(response)); //獲取錯誤信息
if (strcmp(response, "3
Access denied") == 0) //如果是訪問被拒絕的錯誤,則說明請求失敗
return -1;
//將服務(wù)器響應(yīng)內(nèi)容解碼成XML格式字符串
xmlDocPtr doc = xmlParseMemory(response, strlen(response), NULL); //如果解碼成功則返回doc對象
//遍歷XML文檔中的所有元素
xmlNodePtr root = xmlDocGetRootElement(doc);
for (xmlNodePtr node = root; node; node = node->next) {
//找到元素的屬性名和值
const xmlChar* name = xmlStrchr(node->name, '>');
if (name != NULL)
name++;
const xmlChar* value = xmlDictLookup(node->dict, name);
//輸出該元素的文本內(nèi)容
cout << name << ":" << endl;
cout << value << endl;
}
//關(guān)閉資源
curl_close(curl_handle);
curl_global_cleanup();
return 0;
}
```
注:以上代碼僅供參考,具體實現(xiàn)方式可能因?qū)嶋H需求而異。
標簽: