资源简介
应用Socket编程实现一个简单的网络聊天程序。聊天框架由客户端和服务器端组成,服务器连接、消息接收以及关闭等功能。是通过建立基于对话框的MFC工程文件来实现编程,并支持window socket。重点在于整体的设计是基于对话框和类的。
先进行对话框的布局以及各个控件属性的设置,再为控件添加响应函数和成员变量。客户端和服务器端整合到一个对话框,利用设置radio button可以对两者进行切换,并写入相应的程序代码。客户端对应“连接”按钮,服务器端对应“监听”按钮。为其添加socket类和相应的代码。添加类相应的各代码后,进行客户端和服务器端的连接。编译启动时,启动两份,分别选择客户端和服务器端就可以进行对话了。
代码片段和文件信息
// MySock.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “MySock.h“
#include “MySockDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMySockApp
BEGIN_MESSAGE_MAP(CMySockApp CWinApp)
//{{AFX_MSG_MAP(CMySockApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CMySockApp construction
CMySockApp::CMySockApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMySockApp object
CMySockApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CMySockApp initialization
BOOL CMySockApp::InitInstance()
{
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CMySockDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 114768 2011-07-07 14:54 MySock\Debug\MySock.exe
文件 229648 2011-07-07 14:54 MySock\Debug\MySock.ilk
文件 15270 2010-05-17 23:10 MySock\Debug\MySock.obj
文件 5705916 2010-05-17 23:10 MySock\Debug\MySock.pch
文件 402432 2011-07-07 14:54 MySock\Debug\MySock.pdb
文件 3096 2011-07-07 14:54 MySock\Debug\MySock.res
文件 9347 2010-05-17 23:10 MySock\Debug\MySocket.obj
文件 106508 2010-05-17 23:10 MySock\Debug\StdAfx.obj
文件 353280 2011-11-09 18:14 MySock\Debug\vc60.idb
文件 372736 2011-07-06 16:03 MySock\Debug\vc60.pdb
文件 36935 2011-07-06 16:03 MySock\Debug\MySockDlg.obj
文件 1851 2011-11-09 17:55 MySock\MySock.clw
文件 2157 2009-05-30 21:51 MySock\MySock.cpp
文件 4287 2009-05-31 01:22 MySock\MySock.dsp
文件 535 2009-05-30 21:51 MySock\MySock.dsw
文件 1324 2009-05-30 21:51 MySock\MySock.h
文件 107520 2011-11-09 18:14 MySock\MySock.ncb
文件 727 2011-07-07 14:54 MySock\MySock.plg
文件 1726 2009-05-31 00:51 MySock\MySockDlg.h
文件 2183 2009-05-31 00:03 MySock\MySocket.cpp
文件 1447 2009-05-31 00:03 MySock\MySocket.h
文件 3579 2009-05-30 21:51 MySock\ReadMe.txt
文件 1078 2009-05-30 21:51 MySock\res\MySock.ico
文件 398 2009-05-30 21:51 MySock\res\MySock.rc2
..A.SH. 6144 2012-03-14 10:44 MySock\res\Thumbs.db
文件 1373 2009-05-31 01:15 MySock\resource.h
文件 208 2009-05-30 21:51 MySock\StdAfx.cpp
文件 1102 2009-05-30 21:51 MySock\StdAfx.h
文件 12130 2011-07-06 15:56 MySock\RCa03588
文件 8297 2011-07-06 16:03 MySock\MySockDlg.cpp
............此处省略9个文件信息
相关资源
- 网络五子棋全功能版
- mfc socket编程实现聊天与文件传输vs2
- MFC socket编程 简易聊天工具及文件
- Windows环境下socket编程C语言编写
- C++实现简单Socket编程,多客户端登陆
- 基于C++ socket编程实现的websocket服务器
- Linux环境下C语言Socket编程——客户端
- C语言socket编程实现网络数据传输
- websocket编程C语言源码
- c++ socket编程服务端代码!!!
- MFC socket编程MyQQ
- MFC下CSocket编程详解代码
- C语言socket编程指南(讲解+)
- MFC:Socket编程—TCP服务端和多个客户
- vc网络聊天室源代码mfc聊天器VC网络编
- MFC网络编程源代码vc网络编程mfc sock
- VC6.0下的socket编程 实现了UDP数据传输
- vc++ socket编程(服务器/客户端)
- C C++ socket编程教程:1天玩转socket通信
- c++ socket编程服务端及客户端
评论
共有 条评论