我需要使用C++發送http獲取請求。我以現在的代碼是:向網站發送http獲取請求,忽略使用C++的響應
#include <iostream>
#include <fstream>
#include <cstdlib>
using namespace std;
int main()
{
ifstream llfile;
llfile.open("C:/AdobeRenderServerLog.txt");
if(!llfile.is_open()){
exit(EXIT_FAILURE);
}
char word[50];
llfile >> word;
cout << word;
llfile.close();
return 0;
}
請求將東西送到:
www.example.com/logger.php?data=word
「忽略請求」?是吧? –
@MarcB:看到這個URL例子,我會說他只是想在不考慮結果的情況下執行他的請求,因此沒有解析響應。 – psycho
@MarcB Typo。忽略響應。 –