WinInet基础知识 | Microsoft Learn

//this code excerpt also demonstrates try/catch exception handling
#include <afxinet.h>

void DisplayHttpPage(LPCTSTR pszServerName, LPCTSTR pszFileName)
{
   CInternetSession session(_T(“My Session“));        //用于建立一个网络连接
   CHttpConnection* pServer = NULL;        //用于管理上面建立的网络连接
   CHttpFile* pFile = NULL;                //用于读取或者储存文件包括本地
   try
   {
      CString strServerName;                
      INTERNET_PORT nPort = 80;
      DWORD dwRet = 0;

      pServer = session.GetHttpConnection(pszServerName, nPort);        //这个就是常规用法即:

        //CHttpConnectionObj=session.GetHttpConnection();

        //后面这2个函数一起作用用于打开服务器上面的文件或者本地文件
      pFile = pServer->OpenRequest(CHttpConnection::HTTP_VERB_GET, pszFileName);
      pFile->SendRequest();

      pFile->QueryInfoStatusCode(dwRet);

      if (dwRet == HTTP_STATUS_OK)
      {
         CHAR szBuff[1024];
         while (pFile->Read(szBuff, 1024) > 0)
         {
            printf_s(“%1023s”, szBuff);
         }
      }
      delete pFile;
      delete pServer;
   }
   catch (CInternetException* pEx)
   {
       //catch errors from WinInet
      TCHAR pszError[64];
      pEx->GetErrorMessage(pszError, 64);
      _tprintf_s(_T(“%63s”), pszError);
   }
   session.Close();
}

原文地址:https://blog.csdn.net/geniusChinaHN/article/details/134760094

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_31612.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注