• 大小: 78KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-19
  • 语言: C/C++
  • 标签:

资源简介

http协议封装类,和页面获取程序,完整实现了http协议的get、psot等

资源截图

代码片段和文件信息

// HTTPrequest.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “HTTPrequest.h“
#include “HTTPrequestDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CHTTPrequestApp

BEGIN_MESSAGE_MAP(CHTTPrequestApp CWinApp)
//{{AFX_MSG_MAP(CHTTPrequestApp)
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CHTTPrequestApp construction

CHTTPrequestApp::CHTTPrequestApp()
{
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CHTTPrequestApp object

CHTTPrequestApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CHTTPrequestApp initialization

BOOL CHTTPrequestApp::InitInstance()
{
AfxEnableControlContainer();

// Standard initialization

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CHTTPrequestDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
}
else if (nResponse == IDCANCEL)
{
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1078  2002-06-07 05:49  res\HTTPrequest.ico

     文件        403  2002-06-07 05:49  res\HTTPrequest.rc2

     文件      22050  2007-11-18 18:29  trace\trace.js

     文件        937  2007-11-18 18:18  trace\Untitled-1.html

     文件     127071  2009-04-19 20:08  HTTPrequest1.exe

     文件      37652  2009-04-19 22:20  HTTPrequest.aps

     文件       2665  2009-04-20 22:42  HTTPrequest.clw

     文件       1531  2002-06-07 05:49  HTTPrequest.cpp

     文件       4907  2002-06-25 18:54  HTTPrequest.dsp

     文件        591  2002-06-07 15:50  HTTPrequest.dsw

     文件      24576  2009-04-19 22:19  HTTPrequest.exe1

     文件      24576  2009-04-20 22:30  HTTPrequest.exeq

     文件       1237  2002-06-07 05:49  HTTPrequest.h

     文件     107520  2009-04-20 22:42  HTTPrequest.ncb

     文件      54784  2009-04-20 22:42  HTTPrequest.opt

     文件        952  2009-04-20 22:30  HTTPrequest.plg

     文件        206  2009-04-20 22:42  HTTPrequest.positions

     文件       7517  2009-04-19 22:20  HTTPrequest.rc

     文件       8869  2002-06-26 12:13  HTTPrequestDlg.cpp

     文件       1895  2002-06-26 11:33  HTTPrequestDlg.h

     文件      12399  2002-06-25 15:41  Request.cpp

     文件       2070  2002-06-10 07:15  Request.h

     文件       1149  2002-06-14 17:59  resource.h

     文件        213  2002-06-07 05:49  StdAfx.cpp

     文件       1113  2002-06-14 16:24  StdAfx.h

     文件      11299  2002-06-07 13:51  webbrowser2.cpp

     文件       3759  2002-06-07 13:51  webbrowser2.h

    ..AD...         0  2002-06-14 15:09  res

     目录          0  2007-11-19 11:41  trace

----------- ---------  ---------- -----  ----

............此处省略2个文件信息

评论

共有 条评论

相关资源