我还在网上保存随机网页。稍微修改代码后(以不同的方式调用HttpOpenRequest()),程序成功下载了一个被重定向的页面。但我仍然无法得到我想要的任何网页。
示例:
#include <windows.h>
#include <wininet.h>
#include <stdio.h>
#include <fstream>
#include <cstring>
#define SIZE 128
int main()
{
HINTERNET Initialize,Connection,File;
DWORD dwBytes;
char ch;
Initialize = InternetOpen("HTTPGET",INTERNET_OPEN_TYPE_DIRECT,NULL,NULL,0);
Connection = InternetConnect(Initialize,"http://www.rottentomatoes.com",INTERNET_DEFAULT_HTTP_PORT,
NULL,NULL,INTERNET_SERVICE_HTTP,0,0);
//File = HttpOpenRequest(Connection,NULL,"/index.html",NULL,NULL,NULL,0,0);
/**/
File = HttpOpenRequest(Connection,
"GET",
"/index.jsp",
"HTTP/1.1",
NULL, NULL,
INTERNET_FLAG_RELOAD | INTERNET_FLAG_EXISTING_CONNECT, 0);
if(HttpSendRequest(File,NULL,0,NULL,0))
{
std::ofstream webSource;
//webSource.open(strcat(argv[1], "__.html"));
webSource.open("a.html");
while(InternetReadFile(File,&ch,1,&dwBytes))
{
if(dwBytes != 1)break;
webSource << ch;
}
webSource.close();
}
InternetCloseHandle(File);
InternetCloseHandle(Connection);
InternetCloseHandle(Initialize);
return 0;
}
但是当我尝试下载&#34; http://www.rottentomatoes.com/m/1209933-puss_in_boots/" ;,我失败了,也就是说,程序运行不到一秒钟就产生了没有输出文件。
这里的问题是什么,导致这种情况发生的是什么功能?
答案 0 :(得分:0)
尝试从示例网址中删除“http://”。
Connection = InternetConnect(Initialize,"www.rottentomatoes.com", INTERNET_DEFAULT_HTTP_PORT,
NULL,NULL,INTERNET_SERVICE_HTTP,0,0);
并确保HttpOpenRequest中的文件名有效。