我需要使用 c++ 发送一个 http get 请求。我现在的代码是:
#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