mirror of
https://gitee.com/acl-dev/acl.git
synced 2024-12-14 08:50:53 +08:00
95993e39be
add feature for json lib and add some json samples
45 lines
1.0 KiB
C++
45 lines
1.0 KiB
C++
#include "stdafx.h"
|
||
/**
|
||
* 测试json解析器对于制表符解析问题,\t \n等
|
||
*/
|
||
|
||
int main()
|
||
{
|
||
const char* type = "set";
|
||
const char* tablename = "\txmailuser";
|
||
const char* name = " chenzhen";
|
||
|
||
printf(">>>>{%s}\r\n", tablename);
|
||
acl::json json;
|
||
acl::json_node& root = json.get_root().add_child(false, true);
|
||
root.add_child("type", type);
|
||
root.add_child("tablename", tablename);
|
||
root.add_child("name", name);
|
||
|
||
// 生成json字符串
|
||
printf("json to string:%s\r\n", json.to_string().c_str());
|
||
|
||
acl::string buf;
|
||
json.build_json(buf);
|
||
// 根据生成的字符串获取键值
|
||
acl::json json2(buf.c_str());
|
||
acl::json_node* root2 = json2.get_root().first_child();
|
||
acl::json_node* child = root2->first_child();
|
||
|
||
const char* tag, *txt;
|
||
while (child != NULL)
|
||
{
|
||
if ((tag = child->tag_name()) != NULL && *tag != 0
|
||
&& (txt = child->get_text()) != NULL && *txt != 0)
|
||
{
|
||
printf("tag: %s, txt: %s\n", tag, txt);
|
||
}
|
||
else
|
||
printf("no tag name or no txt in json node");
|
||
|
||
child = root2->next_child();
|
||
}
|
||
printf("\r\n");
|
||
return 0;
|
||
}
|