Add example code of Visual Studio 2017 on windows OS.

This commit is contained in:
gaozilai 2020-10-12 16:31:28 +08:00
parent 5f4e10462f
commit 97925263f5
10 changed files with 478 additions and 0 deletions

View File

@ -0,0 +1,39 @@
#pragma once
#ifndef VC_EXTRALEAN
#define VC_EXTRALEAN // 从 Windows 头中排除极少使用的资料
#endif
#include "targetver.h"
#define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // 某些 CString 构造函数将是显式的
// 关闭 MFC 的一些常见且经常可放心忽略的隐藏警告消息
#define _AFX_ALL_WARNINGS
#include <afxwin.h> // MFC 核心组件和标准组件
#include <afxext.h> // MFC 扩展
#ifndef _AFX_NO_OLE_SUPPORT
#include <afxdtctl.h> // MFC 对 Internet Explorer 4 公共控件的支持
#endif
#ifndef _AFX_NO_AFXCMN_SUPPORT
#include <afxcmn.h> // MFC 对 Windows 公共控件的支持
#endif // _AFX_NO_AFXCMN_SUPPORT
#include <afxcontrolbars.h> // MFC 支持功能区和控制条

View File

@ -0,0 +1,91 @@

// jsonTest.cpp: 定义应用程序的类行为。
//
#include "framework.h"
#include "jsonTest.h"
#include "jsonTestDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CjsonTestApp
BEGIN_MESSAGE_MAP(CjsonTestApp, CWinApp)
ON_COMMAND(ID_HELP, &CWinApp::OnHelp)
END_MESSAGE_MAP()
// CjsonTestApp 构造
CjsonTestApp::CjsonTestApp()
{
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}
// 唯一的 CjsonTestApp 对象
CjsonTestApp theApp;
// CjsonTestApp 初始化
BOOL CjsonTestApp::InitInstance()
{
CWinApp::InitInstance();
// 创建 shell 管理器,以防对话框包含
// 任何 shell 树视图控件或 shell 列表视图控件。
CShellManager *pShellManager = new CShellManager;
// 激活“Windows Native”视觉管理器以便在 MFC 控件中启用主题
CMFCVisualManager::SetDefaultManager(RUNTIME_CLASS(CMFCVisualManagerWindows));
// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T("应用程序向导生成的本地应用程序"));
CjsonTestDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此放置处理何时用
// “确定”来关闭对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用
// “取消”来关闭对话框的代码
}
else if (nResponse == -1)
{
TRACE(traceAppMsg, 0, "警告: 对话框创建失败,应用程序将意外终止。\n");
TRACE(traceAppMsg, 0, "警告: 如果您在对话框上使用 MFC 控件,则无法 #define _AFX_NO_MFC_CONTROLS_IN_DIALOGS。\n");
}
// 删除上面创建的 shell 管理器。
if (pShellManager != nullptr)
{
delete pShellManager;
}
#if !defined(_AFXDLL) && !defined(_AFX_NO_MFC_CONTROLS_IN_DIALOGS)
ControlBarCleanUp();
#endif
// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
// 而不是启动应用程序的消息泵。
return FALSE;
}

View File

@ -0,0 +1,32 @@

// jsonTest.h: PROJECT_NAME 应用程序的主头文件
//
#pragma once
#ifndef __AFXWIN_H__
#error "include 'pch.h' before including this file for PCH"
#endif
#include "resource.h" // 主符号
// CjsonTestApp:
// 有关此类的实现,请参阅 jsonTest.cpp
//
class CjsonTestApp : public CWinApp
{
public:
CjsonTestApp();
// 重写
public:
virtual BOOL InitInstance();
// 实现
DECLARE_MESSAGE_MAP()
};
extern CjsonTestApp theApp;

Binary file not shown.

View File

@ -0,0 +1,248 @@

// jsonTestDlg.cpp: 实现文件
//
#include "framework.h"
#include "jsonTest.h"
#include "jsonTestDlg.h"
#include "afxdialogex.h"
#include "../../../../include/json/json.h"
#include <fstream>
#include <iostream>
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CjsonTestDlg 对话框
CjsonTestDlg::CjsonTestDlg(CWnd* pParent /*=nullptr*/)
: CDialogEx(IDD_JSONTEST_DIALOG, pParent)
{
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}
void CjsonTestDlg::DoDataExchange(CDataExchange* pDX)
{
CDialogEx::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CjsonTestDlg, CDialogEx)
ON_WM_PAINT()
ON_WM_QUERYDRAGICON()
ON_BN_CLICKED(IDC_readFromStream,
&CjsonTestDlg::OnBnClickedreadfromstream)
ON_BN_CLICKED(IDC_readFromString, &CjsonTestDlg::OnBnClickedreadfromstring)
ON_BN_CLICKED(IDC_streamWrite, &CjsonTestDlg::OnBnClickedstreamwrite)
ON_BN_CLICKED(IDC_stringWrite, &CjsonTestDlg::OnBnClickedstringwrite)
END_MESSAGE_MAP()
// CjsonTestDlg 消息处理程序
BOOL CjsonTestDlg::OnInitDialog()
{
CDialogEx::OnInitDialog();
// 设置此对话框的图标。 当应用程序主窗口不是对话框时,框架将自动
// 执行此操作
SetIcon(m_hIcon, TRUE); // 设置大图标
SetIcon(m_hIcon, FALSE); // 设置小图标
// TODO: 在此添加额外的初始化代码
return TRUE; // 除非将焦点设置到控件,否则返回 TRUE
}
// 如果向对话框添加最小化按钮,则需要下面的代码
// 来绘制该图标。 对于使用文档/视图模型的 MFC 应用程序,
// 这将由框架自动完成。
void CjsonTestDlg::OnPaint()
{
if (IsIconic())
{
CPaintDC dc(this); // 用于绘制的设备上下文
SendMessage(WM_ICONERASEBKGND, reinterpret_cast<WPARAM>(dc.GetSafeHdc()), 0);
// 使图标在工作区矩形中居中
int cxIcon = GetSystemMetrics(SM_CXICON);
int cyIcon = GetSystemMetrics(SM_CYICON);
CRect rect;
GetClientRect(&rect);
int x = (rect.Width() - cxIcon + 1) / 2;
int y = (rect.Height() - cyIcon + 1) / 2;
// 绘制图标
dc.DrawIcon(x, y, m_hIcon);
}
else
{
CDialogEx::OnPaint();
}
}
//当用户拖动最小化窗口时系统调用此函数取得光标
//显示。
HCURSOR CjsonTestDlg::OnQueryDragIcon()
{
return static_cast<HCURSOR>(m_hIcon);
}
void CjsonTestDlg::OnBnClickedreadfromstream()
{
Json::Value root;
Json::CharReaderBuilder builder;
builder["collectComments"] = true;
Json::String errs;
std::ifstream ifs;
CFileDialog dlg(1);
if (dlg.DoModal() == IDOK)
{
ifs.open(dlg.GetPathName());
try
{
if (!parseFromStream(builder, ifs, &root, &errs))
{
MessageBox(errs.c_str());
return;
}
CString strTxt;
switch (root.type())
{
case Json::nullValue:
strTxt = "null";
break;
case Json::intValue:
strTxt.Format("intValue = %lld", root.asInt64());
break;
case Json::uintValue:
strTxt.Format("uintValue = %llu", root.asUInt64());
break;
case Json::realValue:
strTxt.Format("realValue = %f", root.asDouble());
break;
case Json::stringValue:
strTxt.Format("stringValue = %s", root.asCString());
break;
case Json::booleanValue:
strTxt.Format("booleanValue = %s", root.asBool() ? "True" : "False");
break;
case Json::arrayValue:
{
strTxt = "It is a arrayValue, types are:\n";
for (Json::Value::iterator it = root.begin(); it != root.end(); it++)
{
Json::ValueType vvt = it->type();
const CString cts[] = { "null","int","uint","real","string","boolean","array","object" };
strTxt += cts[vvt] + " = ...\n";
}
}
break;
case Json::objectValue:
{
strTxt = "It is a objectValue, objects are:\n";
Json::Value::Members mems = root.getMemberNames();
for (Json::Value::Members::iterator it = mems.begin(); it != mems.end(); it++)
{
strTxt += it->c_str();
strTxt += " = ...\n";
}
}
break;
default:
strTxt = root.toStyledString().c_str();
break;
}
MessageBox(strTxt);
}
catch (Json::Exception e)
{
MessageBox(e.what());
}
ifs.close();
}
}
void CjsonTestDlg::OnBnClickedreadfromstring()
{
const std::string rawJson = R"({"Age": 20, "Name": "colin"})";
JSONCPP_STRING err;
Json::Value root;
Json::CharReaderBuilder builder;
std::unique_ptr<Json::CharReader> reader(builder.newCharReader());
if (!reader->parse(rawJson.c_str(), rawJson.c_str() + rawJson.length(), &root, &err))
{
MessageBox(err.c_str());
return;
}
std::string name = root["Name"].asString();
int age = root["Age"].asInt();
CString strTxt;
strTxt.Format("%s is %d.", name.c_str(), age);
MessageBox(strTxt);
}
void CjsonTestDlg::OnBnClickedstreamwrite()
{
Json::Value root, lang, mail;
Json::StreamWriterBuilder builder;
std::unique_ptr<Json::StreamWriter> writer(builder.newStreamWriter());
std::ostringstream os;
root["Name"] = "Gao zilai";
root["Age"] = 36;
lang[0] = "C";
lang[1] = "C++";
lang[2] = "Java";
lang[3] = "Python";
lang[4] = "Visual C++";
root["Language"] = lang;
mail["Netease"] = "utrust@163.com";
mail["Hotmail"] = "gao_zilao@hotmail.com";
root["E-mail"] = mail;
writer->write(root, &os);
TRACE(os.str().c_str());
MessageBox(os.str().c_str());
}
void CjsonTestDlg::OnBnClickedstringwrite()
{
Json::Value root, lang, mail;
Json::StreamWriterBuilder builder;
root["Name"] = "Gao zilai";
root["Age"] = 36;
lang[0] = "C";
lang[1] = "C++";
lang[2] = "Java";
lang[3] = "Python";
lang[4] = "Visual C++";
root["Language"] = lang;
mail["Netease"] = "utrust@163.com";
mail["Tencent"] = "121997204@qq.com";
root["E-mail"] = mail;
Json::String str = Json::writeString(builder, root);
MessageBox(str.c_str());
}

View File

@ -0,0 +1,38 @@

// jsonTestDlg.h: 头文件
//
#pragma once
// CjsonTestDlg 对话框
class CjsonTestDlg : public CDialogEx
{
// 构造
public:
CjsonTestDlg(CWnd* pParent = nullptr); // 标准构造函数
// 对话框数据
#ifdef AFX_DESIGN_TIME
enum { IDD = IDD_JSONTEST_DIALOG };
#endif
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
// 实现
protected:
HICON m_hIcon;
// 生成的消息映射函数
virtual BOOL OnInitDialog();
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
afx_msg void OnBnClickedreadfromstream();
DECLARE_MESSAGE_MAP()
public:
afx_msg void OnBnClickedreadfromstring();
afx_msg void OnBnClickedstreamwrite();
afx_msg void OnBnClickedstringwrite();
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

View File

@ -0,0 +1,22 @@
//{{NO_DEPENDENCIES}}
// Microsoft Visual C++ 生成的包含文件。
// 供 jsonTest.rc 使用
//
#define IDD_JSONTEST_DIALOG 102
#define IDR_MAINFRAME 128
#define IDC_readFromStream 1000
#define IDC_readFromString 1001
#define IDC_streamWrite 1002
#define IDC_streamWrite2 1003
#define IDC_stringWrite 1003
// Next default values for new objects
//
#ifdef APSTUDIO_INVOKED
#ifndef APSTUDIO_READONLY_SYMBOLS
#define _APS_NEXT_RESOURCE_VALUE 130
#define _APS_NEXT_COMMAND_VALUE 32771
#define _APS_NEXT_CONTROL_VALUE 1001
#define _APS_NEXT_SYMED_VALUE 101
#endif
#endif

View File

@ -0,0 +1,8 @@
#pragma once
// 包括 SDKDDKVer.h 将定义可用的最高版本的 Windows 平台。
// 如果要为以前的 Windows 平台生成应用程序,请包括 WinSDKVer.h并将
// 将 _WIN32_WINNT 宏设置为要支持的平台,然后再包括 SDKDDKVer.h。
#include <SDKDDKVer.h>