现在的位置: 首页 > 综合 > 正文

VC读取分析网络文件

2012年11月17日 ⁄ 综合 ⁄ 共 307字 ⁄ 字号 评论关闭
#include       //for WinInet

CInternetSession httpSession;
CInternetFile* htmlFile = (CInternetFile*) httpSession.OpenURL(m_url);
CString content;
//CString source;
while (htmlFile->ReadString(content))
{
  m_html += content;
}
htmlFile->Close();
httpSession.Close();
UpdateData(false);


// CDialog::OnOK();

CString urlint;
CString match;
match = "

抱歉!评论已关闭.