摘要: 先使用InternetOpen初始化WinINet函数,然后在使用InternetOpenUrl打开指定链接,最后就用InternetReadFile就能读取到网页源代码.下面的代码能够打开http://www.baidu.com/并且将网页源代码打印出来.#include <stdio.h>#include <windows.h>#include <wininet.h>#pragma comment(lib,"Wininet.lib")#include <vector>using namespace std; int mai 阅读全文
posted @ 2012-04-01 10:50 likebeta 阅读(9355) 评论(4) 推荐(2) 编辑