在mfc程序使用jsoncpp,用来解析服务端传递来的json数据,
本例将完成一个操作实例
:
1.新建一个用来测试的服务端接口(本例php):
<?php
$row['id'] = 1;
$row['name'] = '中文名';
$com[] = $row;
$row['id'] = 2;
$row['name'] = 'ABC123';
$com[] = $row;
echo json_encode($com);
?>
返回的json测试数据如下:
[{“id”:1,”name”:”\u4e2d\u6587\u540d”},{“id”:2,”name”:”ABC123″}]
2.下载jsoncpp文件,并作配置修改(本例jsoncpp 0.6):
运行时库参照自己所使用的工程:
修改汇编输出,无列表(解决fatal error C1083)
3. 新建一个测试mfc工程,修改属性如下:
拷贝使用jsoncpp所需文件至自己的工程下:
json_vc71_libmt.lib为jsoncpp生成的lib(Winhttp.lib为服务端通信lib,本例不详解)
4. 添加引用:
#include "WinHttpClient.h"
#pragma comment(lib, "json_vc71_libmt")
#include "json/json.h"
添加测试代码:
WinHttpClient client(L"http://192.168.0.101/test1.php");
client.SendHttpRequest(true);
wstring httpResponseHeader = client.GetHttpResponseHeader();
wstring httpResponse = client.GetHttpResponse();
string str(httpResponse.length(), ' ');
copy(httpResponse.begin(), httpResponse.end(), str.begin());
Json::Reader reader;
Json::Value value;
if(reader.parse(str,value))
{
string name;
int size = value.size();
for (int i=0; i<size; ++i)
{
name = value[i]["name"].asString();
//解决中文转码问题
int len = strlen(name.c_str())+1;
char outch[MAX_PATH];
WCHAR * wChar = new WCHAR[len];
wChar[0] = 0;
MultiByteToWideChar(CP_UTF8, 0, name.c_str(), len, wChar, len);
WideCharToMultiByte(CP_ACP, 0, wChar, len, outch , len, 0, 0);
delete [] wChar;
char* pchar = (char*)outch;
len=strlen(pchar)+1;
WCHAR outName[MAX_PATH];
MultiByteToWideChar(CP_ACP, 0, pchar, len, outName, len);
AfxMessageBox(outName);
}
}
编译运行,结果如下:
服务端返回的json数据,mfc程序使用jsoncpp进行解析,将数据中的中文,自行解码直接输出。