【发布时间】:2015-05-15 13:24:50
【问题描述】:
我正在使用 CURLOPT_COOKIEJAR(卷曲库),并将 cookie 保存在文件“cookie.txt”中。我找不到它的文件。它在哪里?我在项目文件夹中搜索,没有。
这是我的代码:
curl_easy_setopt(handle,CURLOPT_COOKIESESSION,1); // clean up session.
curl_easy_setopt(handle,CURLOPT_COOKIEJAR,"cookie.txt");
curl_easy_setopt(handle,CURLOPT_USERAGENT,userAgentMozilla); // set the user agent
curl_easy_setopt(handle,CURLOPT_URL,lien.toUtf8().constData()); // set the url
curl_easy_setopt(handle,CURLOPT_POSTFIELDSIZE,data.size()+4); // size of the request.
curl_easy_setopt(handle,CURLOPT_POSTFIELDS,ba); // aray of the POST request
res = curl_easy_perform(handle);
【问题讨论】:
-
一定要放绝对路径吗?