文章详情

  • 游戏榜单
  • 软件榜单
关闭导航
热搜榜
热门下载
热门标签
php爱好者> php文档>利用WinInet进行网络编程的一个例子。

利用WinInet进行网络编程的一个例子。

时间:2010-09-21  来源:thanklife

文件: Query.rar
大小: 24KB
下载: 下载
 CInternetSession session;
 
 m_out +=  _T("Trying ") +URL +  _T("\r\n");
 UpdateData(FALSE);
 
 CInternetFile *file = NULL;
 
 try
 {
  file = (CInternetFile *)session.OpenURL(URL);
 }
 catch (CInternetException* pEx)
 {
  file = NULL;
  pEx->Delete();
 }
 if (file)
 {
  m_out +=  _T(" Connectiong setalished.\r\n ");
  CString line;
  for(int i=0; file->ReadString(line); i++)
  {
   m_out += line +  _T("\r\n");
   
  }
  file->Close();
  delete file;
 }
 else
 {
  m_out+=  _T("No server found there.\r\n");
 }
 m_out +=  _T("-------------------------------------------------\r\n");
 UpdateData(FALSE);
相关阅读 更多 +
排行榜 更多 +
辰域智控app

辰域智控app

系统工具 下载
网医联盟app

网医联盟app

运动健身 下载
汇丰汇选App

汇丰汇选App

金融理财 下载