欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C/C++ QT实现解析JSON文件的示例代码

程序员文章站 2022-04-04 18:18:20
json是一种轻量级的数据交换格式,它是基于ecmascript的一个子集,使用完全独立于编程语言的文本格式来存储和表示数据,简洁清晰的的层次结构使得json成为理想的数据交换语言,qt库为json的...

json是一种轻量级的数据交换格式,它是基于ecmascript的一个子集,使用完全独立于编程语言的文本格式来存储和表示数据,简洁清晰的的层次结构使得json成为理想的数据交换语言,qt库为json的相关操作提供了完整的类支持.

创建一个解析文件,命名为config.json我们将通过代码依次解析这个json文件中的每一个参数,具体解析代码如下:

{
    "blog": "https://www.cnblogs.com/lyshark",
    "enable": true,
    "status": 1024,
    
    "getdict": {"address":"192.168.1.1","username":"root","password":"123456","update":"2020-09-26"},
    "getlist": [1,2,3,4,5,6,7,8,9,0],
    
    "objectinarrayjson":
    {
        "one": ["sunday","monday","tuesday","wednesday","thursday","friday","saturday"],
        "two": ["sunday","monday","tuesday"]
    },
    
    "arrayjson": [
        ["192.168.1.1","root","22"],
        ["192.168.1.2","root","23"],
        ["192.168.1.3","root","24"],
        ["192.168.1.4","root","25"],
        ["192.168.1.5","root","26"]
    ],
    
    "objectjson": [
        {"address":"192.168.1.1","username":"admin"},
        {"address":"192.168.1.2","username":"root"},
        {"address":"192.168.1.3","username":"lyshark"}
    ],
    
    "objectarrayjson": [
        {"uname":"root","ulist":[1,2,3,4,5]},
        {"uname":"lyshark","ulist":[11,22,33,44,55,66,77,88,99]}
    ],
    
    "nestingobjectjson": [
        {
            "uuid": "1001",
            "basic": {
                "lat": "12.657", 
                "lon": "55.789"
            }
        },
        {
            "uuid": "1002",
            "basic": {
                "lat": "31.24", 
                "lon": "25.55"
            }
        }
    ],
    
    "arraynestingarrayjson":
    [
        {
            "telephone": "1323344521",
            "path": [
                [
                    11.5,22.4,56.9
                ],
                [
                    19.4,34.6,44.7
                ]
            ]
        }
    ]
}

实现修改单层根节点下面指定的节点元素,修改的原理是读入到内存替换后在全部写出到文件.

// 读取json文本
// https://www.cnblogs.com/lyshark
qstring readonly_string(qstring file_path)
{
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.exists())
    {
        return "none";
    }
    if(false == this_file_ptr.open(qiodevice::readonly | qiodevice::text))
    {
        return "none";
    }
    qstring string_value = this_file_ptr.readall();

    this_file_ptr.close();
    return string_value;
}

// 写出json到文件
bool writeonly_string(qstring file_path, qstring file_data)
{
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))
    {
        return false;
    }

    qbytearray write_byte = file_data.toutf8();

    this_file_ptr.write(write_byte,write_byte.length());
    this_file_ptr.close();
    return true;
}

int main(int argc, char *argv[])
{
    qcoreapplication a(argc, argv);

    // 读文件
    qstring readonly_config = readonly_string("d:/config.json");

    // 开始解析 解析成功返回qjsondocument对象否则返回null
    qjsonparseerror err_rpt;
    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);
    if (err_rpt.error != qjsonparseerror::noerror && !root_document.isnull())
    {
        return 0;
    }

    // 获取根节点
    qjsonobject root = root_document.object();

    // 修改根节点下的子节点
    root["blog"] = "https://www.baidu.com";
    root["enable"] = false;
    root["status"] = 2048;

    // 将object设置为本文档的主要对象
    root_document.setobject(root);

    // 紧凑模式输出
    // https://www.cnblogs.com/lyshark
    qbytearray root_string_compact = root_document.tojson(qjsondocument::compact);
    std::cout << "紧凑模式: " << root_string_compact.tostdstring() << std::endl;

    // 规范模式输出
    qbytearray root_string_indented = root_document.tojson(qjsondocument::indented);
    std::cout << "规范模式: " << root_string_indented.tostdstring() << std::endl;

    // 分别写出两个配置文件
    writeonly_string("d:/indented_config.json",root_string_indented);
    writeonly_string("d:/compact_config.json",root_string_compact);

    return a.exec();
}

实现修改单层对象与数组下面指定的节点元素,如上配置文件中的getdict/getlist既是我们需要解析的内容.

// 读取json文本
// https://www.cnblogs.com/lyshark
qstring readonly_string(qstring file_path)
{
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.exists())
    {
        return "none";
    }
    if(false == this_file_ptr.open(qiodevice::readonly | qiodevice::text))
    {
        return "none";
    }
    qstring string_value = this_file_ptr.readall();

    this_file_ptr.close();
    return string_value;
}

// 写出json到文件
bool writeonly_string(qstring file_path, qstring file_data)
{
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))
    {
        return false;
    }

    qbytearray write_byte = file_data.toutf8();

    this_file_ptr.write(write_byte,write_byte.length());
    this_file_ptr.close();
    return true;
}

int main(int argc, char *argv[])
{
    qcoreapplication a(argc, argv);

    // 读文件
    qstring readonly_config = readonly_string("d:/config.json");

    // 开始解析 解析成功返回qjsondocument对象否则返回null
    qjsonparseerror err_rpt;
    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);
    if (err_rpt.error != qjsonparseerror::noerror && !root_document.isnull())
    {
        return 0;
    }

    // 获取根节点
    qjsonobject root = root_document.object();

    // --------------------------------------------------------------------
    // 修改getdict对象内容
    // --------------------------------------------------------------------

    // 找到对象地址,并修改
    qjsonobject get_dict_ptr = root.find("getdict").value().toobject();

    // 修改对象内存数据
    get_dict_ptr["address"] = "127.0.0.1";
    get_dict_ptr["username"] = "lyshark";
    get_dict_ptr["password"] = "12345678";
    get_dict_ptr["update"] = "2021-09-25";

    // 赋值给根
    root["getdict"] = get_dict_ptr;

    // 将对象设置到根
    root_document.setobject(root);

    // 规范模式
    qbytearray root_string_indented = root_document.tojson(qjsondocument::indented);

    // 写配置文件
    writeonly_string("d:/indented_config.json",root_string_indented);

    // --------------------------------------------------------------------
    // 修改getlist数组内容
    // --------------------------------------------------------------------

    // 找到数组并修改
    qjsonarray get_list_ptr = root.find("getlist").value().toarray();

    // 替换指定下标的数组元素
    get_list_ptr.replace(0,22);
    get_list_ptr.replace(1,33);

    // 将当前数组元素直接覆盖到原始位置
    qjsonarray item = {"admin","root","lyshark"};
    get_list_ptr = item;

    // 设置到原始数组
    root["getlist"] = get_list_ptr;
    root_document.setobject(root);

    qbytearray root_string_list_indented = root_document.tojson(qjsondocument::indented);
    writeonly_string("d:/indented_config.json",root_string_list_indented);

    return a.exec();
}

实现修改对象内对象value列表下面指定的节点元素,如上配置文件中的objectinarrayjson既是我们需要解析的内容.

// 读取json文本
qstring readonly_string(qstring file_path)
{
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.exists())
    {
        return "none";
    }
    if(false == this_file_ptr.open(qiodevice::readonly | qiodevice::text))
    {
        return "none";
    }
    qstring string_value = this_file_ptr.readall();

    this_file_ptr.close();
    return string_value;
}

// 写出json到文件
// https://www.cnblogs.com/lyshark
bool writeonly_string(qstring file_path, qstring file_data)
{
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))
    {
        return false;
    }

    qbytearray write_byte = file_data.toutf8();

    this_file_ptr.write(write_byte,write_byte.length());
    this_file_ptr.close();
    return true;
}

int main(int argc, char *argv[])
{
    qcoreapplication a(argc, argv);

    // 读文件
    qstring readonly_config = readonly_string("d:/config.json");

    // 开始解析 解析成功返回qjsondocument对象否则返回null
    qjsonparseerror err_rpt;
    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);
    if (err_rpt.error != qjsonparseerror::noerror && !root_document.isnull())
    {
        return 0;
    }

    // 获取根节点
    qjsonobject root = root_document.object();

    // --------------------------------------------------------------------
    // 修改对象中的列表
    // --------------------------------------------------------------------

    // 找到对象地址并修改
    qjsonobject get_dict_ptr = root.find("objectinarrayjson").value().toobject();

    // 迭代器输出对象中的数据
    qjsonobject::iterator it;
    for(it=get_dict_ptr.begin(); it!= get_dict_ptr.end(); it++)
    {
        qstring key = it.key();
        qjsonarray value = it.value().toarray();

        std::cout << "key = " << key.tostdstring() << " valuecount = " << value.count() << std::endl;

        // 循环输出元素
        for(int index=0; index < value.count(); index++)
        {
            qstring val = value.tovariantlist().at(index).tostring();
            std::cout << "-> " << val.tostdstring() << std::endl;
        }
    }

    // 迭代寻找需要修改的元素并修改
    for(it=get_dict_ptr.begin(); it!= get_dict_ptr.end(); it++)
    {
        qstring key = it.key();

        // 如果找到了指定的key 则将value中的列表替换到其中
        if(key.tostdstring() == "two")
        {
            // 替换整个数组
            qjsonarray value = {1,2,3,4,5};
            get_dict_ptr[key] = value;
            break;
        }
        else if(key.tostdstring() == "one")
        {
            // 替换指定数组元素
            qjsonarray array = get_dict_ptr[key].toarray();

            array.replace(0,"lyshark");
            array.replace(1,"lyshark");
            array.removeat(1);

            // 写回原json字符串
            get_dict_ptr[key] = array;
        }
    }

    // 赋值给根
    root["objectinarrayjson"] = get_dict_ptr;

    // 将对象设置到根
    root_document.setobject(root);

    // 规范模式
    qbytearray root_string_indented = root_document.tojson(qjsondocument::indented);

    // 写配置文件
    writeonly_string("d:/indented_config.json",root_string_indented);

    return a.exec();
}

实现修改匿名数组中的数组元素下面指定的节点元素,如上配置文件中的arrayjson既是我们需要解析的内容.

// 读取json文本
// https://www.cnblogs.com/lyshark
qstring readonly_string(qstring file_path)
{
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.exists())
    {
        return "none";
    }
    if(false == this_file_ptr.open(qiodevice::readonly | qiodevice::text))
    {
        return "none";
    }
    qstring string_value = this_file_ptr.readall();

    this_file_ptr.close();
    return string_value;
}

// 写出json到文件
bool writeonly_string(qstring file_path, qstring file_data)
{
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))
    {
        return false;
    }

    qbytearray write_byte = file_data.toutf8();

    this_file_ptr.write(write_byte,write_byte.length());
    this_file_ptr.close();
    return true;
}

int main(int argc, char *argv[])
{
    qcoreapplication a(argc, argv);

    // 读文件
    qstring readonly_config = readonly_string("d:/config.json");

    // 开始解析 解析成功返回qjsondocument对象否则返回null
    qjsonparseerror err_rpt;
    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);
    if (err_rpt.error != qjsonparseerror::noerror && !root_document.isnull())
    {
        return 0;
    }

    // 获取根节点
    qjsonobject root = root_document.object();

    // --------------------------------------------------------------------
    // 修改数组中的数组
    // --------------------------------------------------------------------

    qjsonarray array_value = root.value("arrayjson").toarray();
    int insert_index = 0;

    // 循环查找ip地址,找到后将其弹出
    for(int index=0; index < array_value.count(); index++)
    {
        qjsonvalue parset = array_value.at(index);

        if(parset.isarray())
        {
            qstring address = parset.toarray().at(0).tostring();

            // 寻找指定行下标,并将其弹出
            if(address == "192.168.1.3")
            {
                std::cout << "找到该行下标: " << index << std::endl;
                insert_index = index;
                array_value.removeat(index);
            }
        }
    }

    // 新增一行ip地址
    qjsonarray item = {"192.168.1.3","lyshark","123456"};
    array_value.insert(insert_index,item);

    // 赋值给根
    root["arrayjson"] = array_value;

    // 将对象设置到根
    root_document.setobject(root);

    // 规范模式
    qbytearray root_string_indented = root_document.tojson(qjsondocument::indented);

    // 写配置文件
    // https://www.cnblogs.com/lyshark
    writeonly_string("d:/indented_config.json",root_string_indented);

    return a.exec();
}

实现修改数组中对象元素下面指定的节点元素,如上配置文件中的objectjson既是我们需要解析的内容.

// 读取json文本
qstring readonly_string(qstring file_path)
{
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.exists())
    {
        return "none";
    }
    if(false == this_file_ptr.open(qiodevice::readonly | qiodevice::text))
    {
        return "none";
    }
    qstring string_value = this_file_ptr.readall();

    this_file_ptr.close();
    return string_value;
}

// 写出json到文件
// https://www.cnblogs.com/lyshark
bool writeonly_string(qstring file_path, qstring file_data)
{
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))
    {
        return false;
    }

    qbytearray write_byte = file_data.toutf8();

    this_file_ptr.write(write_byte,write_byte.length());
    this_file_ptr.close();
    return true;
}

int main(int argc, char *argv[])
{
    qcoreapplication a(argc, argv);

    // 读文件
    qstring readonly_config = readonly_string("d:/config.json");

    // 开始解析 解析成功返回qjsondocument对象否则返回null
    qjsonparseerror err_rpt;
    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);
    if (err_rpt.error != qjsonparseerror::noerror && !root_document.isnull())
    {
        return 0;
    }

    // 获取根节点
    qjsonobject root = root_document.object();

    // --------------------------------------------------------------------
    // 修改数组中的对象数值
    // --------------------------------------------------------------------

    qjsonarray array_value = root.value("objectjson").toarray();

    for(int index=0; index < array_value.count(); index++)
    {
        qjsonobject object_value = array_value.at(index).toobject();

        /*
        // 第一种输出方式
        if(!object_value.isempty())
        {
            qstring address = object_value.value("address").tostring();
            qstring username = object_value.value("username").tostring();
            std::cout << "地址: " << address.tostdstring() << " 用户名: " << username.tostdstring() << std::endl;
        }

        // 第二种输出方式
        qvariantmap map = object_value.tovariantmap();
        if(map.contains("address") && map.contains("username"))
        {
            qstring address_map = map["address"].tostring();
            qstring username_map = map["username"].tostring();
            std::cout << "地址: " << address_map.tostdstring() << " 用户名: " << username_map.tostdstring() << std::endl;
        }
        */

        // 开始移除指定行
        qvariantmap map = object_value.tovariantmap();
        if(map.contains("address") && map.contains("username"))
        {
            qstring address_map = map["address"].tostring();

            // 如果是指定ip则首先移除该行
            if(address_map == "192.168.1.3")
            {
                // 首先根据对象序号移除当前对象
                array_value.removeat(index);

                // 接着增加一个新的对象
                object_value["address"] = "127.0.0.1";
                object_value["username"] = "lyshark";

                // 插入到移除的位置上
                array_value.insert(index,object_value);
                break;
            }
        }
    }

    // 赋值给根
    root["objectjson"] = array_value;

    // 将对象设置到根
    root_document.setobject(root);

    // 规范模式
    qbytearray root_string_indented = root_document.tojson(qjsondocument::indented);

    // 写配置文件
    writeonly_string("d:/indented_config.json",root_string_indented);

    return a.exec();
}

实现修改对象中数组元素下面指定的节点元素,如上配置文件中的objectarrayjson既是我们需要解析的内容.

// 读取json文本
qstring readonly_string(qstring file_path)
{
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.exists())
    {
        return "none";
    }
    if(false == this_file_ptr.open(qiodevice::readonly | qiodevice::text))
    {
        return "none";
    }
    qstring string_value = this_file_ptr.readall();

    this_file_ptr.close();
    return string_value;
}

// 写出json到文件
// https://www.cnblogs.com/lyshark
bool writeonly_string(qstring file_path, qstring file_data)
{
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))
    {
        return false;
    }

    qbytearray write_byte = file_data.toutf8();

    this_file_ptr.write(write_byte,write_byte.length());
    this_file_ptr.close();
    return true;
}

int main(int argc, char *argv[])
{
    qcoreapplication a(argc, argv);

    // 读文件
    qstring readonly_config = readonly_string("d:/config.json");

    // 开始解析 解析成功返回qjsondocument对象否则返回null
    qjsonparseerror err_rpt;
    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);
    if (err_rpt.error != qjsonparseerror::noerror && !root_document.isnull())
    {
        return 0;
    }

    // 获取根节点
    qjsonobject root = root_document.object();

    // --------------------------------------------------------------------
    // 修改对象中的数组元素
    // --------------------------------------------------------------------

    qjsonarray array_value = root.value("objectarrayjson").toarray();

    for(int index=0; index < array_value.count(); index++)
    {
        qjsonobject object_value = array_value.at(index).toobject();

        // 开始移除指定行
        qvariantmap map = object_value.tovariantmap();
        if(map.contains("uname") && map.contains("ulist"))
        {
            qstring uname = map["uname"].tostring();

            // 如果是指定ip则首先移除该行
            if(uname == "lyshark")
            {
                qjsonarray ulist_array = map["ulist"].tojsonarray();

                // 替换指定数组元素
                ulist_array.replace(0,100);
                ulist_array.replace(1,200);
                ulist_array.replace(2,300);

                // 输出替换后数组元素
                for(int index =0; index < ulist_array.count(); index ++)
                {
                    int val = ulist_array.at(index).toint();
                    std::cout << "替换后: " << val << std::endl;
                }

                // 首先根据对象序号移除当前对象
                array_value.removeat(index);

                // 接着增加一个新的对象与新列表
                object_value["uname"] = uname;
                object_value["ulist"] = ulist_array;

                // 插入到移除的位置上
                array_value.insert(index,object_value);
                break;
            }
        }
    }

    // 赋值给根
    root["objectarrayjson"] = array_value;

    // 将对象设置到根
    root_document.setobject(root);

    // 规范模式
    qbytearray root_string_indented = root_document.tojson(qjsondocument::indented);

    // 写配置文件
    writeonly_string("d:/indented_config.json",root_string_indented);

    return a.exec();
}

实现修改对象嵌套对象嵌套对象下面指定的节点元素,如上配置文件中的nestingobjectjson既是我们需要解析的内容.

// 读取json文本
qstring readonly_string(qstring file_path)
{
    // https://www.cnblogs.com/lyshark
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.exists())
    {
        return "none";
    }
    if(false == this_file_ptr.open(qiodevice::readonly | qiodevice::text))
    {
        return "none";
    }
    qstring string_value = this_file_ptr.readall();

    this_file_ptr.close();
    return string_value;
}

// 写出json到文件
bool writeonly_string(qstring file_path, qstring file_data)
{
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))
    {
        return false;
    }

    qbytearray write_byte = file_data.toutf8();

    this_file_ptr.write(write_byte,write_byte.length());
    this_file_ptr.close();
    return true;
}

int main(int argc, char *argv[])
{
    qcoreapplication a(argc, argv);

    // 读文件
    qstring readonly_config = readonly_string("d:/config.json");

    // 开始解析 解析成功返回qjsondocument对象否则返回null
    qjsonparseerror err_rpt;
    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);
    if (err_rpt.error != qjsonparseerror::noerror && !root_document.isnull())
    {
        return 0;
    }

    // 获取根节点
    // https://www.cnblogs.com/lyshark
    qjsonobject root = root_document.object();
    int insert_index = 0;

    // --------------------------------------------------------------------
    // 修改对象中嵌套对象嵌套对象
    // --------------------------------------------------------------------

    // 寻找节点中数组位置
    qjsonarray array_object = root.find("nestingobjectjson").value().toarray();
    std::cout << "节点数量: " << array_object.count() << std::endl;

    for(int index=0; index < array_object.count(); index++)
    {
        // 循环寻找uuid
        qjsonobject object = array_object.at(index).toobject();

        qstring uuid = object.value("uuid").tostring();

        // 如果找到了则移除该元素
        if(uuid == "1002")
        {
            insert_index = index;
            array_object.removeat(index);
            break;
        }
    }

    // --------------------------------------------------------------------
    // 开始插入新对象
    // --------------------------------------------------------------------

    // 开始创建新的对象
    qjsonobject sub_json;

    sub_json.insert("lat","100.5");
    sub_json.insert("lon","200.5");

    qjsonobject new_json;

    new_json.insert("uuid","1005");
    new_json.insert("basic",sub_json);

    // 将对象插入到原位置上
    array_object.insert(insert_index,new_json);

    // 赋值给根
    root["nestingobjectjson"] = array_object;

    // 将对象设置到根
    root_document.setobject(root);

    // 规范模式
    qbytearray root_string_indented = root_document.tojson(qjsondocument::indented);

    // 写配置文件
    writeonly_string("d:/indented_config.json",root_string_indented);

    return a.exec();
}

实现修改对象嵌套多层数组下面指定的节点元素,如上配置文件中的arraynestingarrayjson既是我们需要解析的内容.

// 读取json文本
qstring readonly_string(qstring file_path)
{
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.exists())
    {
        return "none";
    }
    // https://www.cnblogs.com/lyshark
    if(false == this_file_ptr.open(qiodevice::readonly | qiodevice::text))
    {
        return "none";
    }
    qstring string_value = this_file_ptr.readall();

    this_file_ptr.close();
    return string_value;
}

// 写出json到文件
bool writeonly_string(qstring file_path, qstring file_data)
{
    qfile this_file_ptr(file_path);
    if(false == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))
    {
        return false;
    }

    qbytearray write_byte = file_data.toutf8();

    this_file_ptr.write(write_byte,write_byte.length());
    this_file_ptr.close();
    return true;
}

int main(int argc, char *argv[])
{
    qcoreapplication a(argc, argv);

    // 读文件
    qstring readonly_config = readonly_string("d:/config.json");

    // 开始解析 解析成功返回qjsondocument对象否则返回null
    qjsonparseerror err_rpt;
    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);
    if (err_rpt.error != qjsonparseerror::noerror && !root_document.isnull())
    {
        return 0;
    }

    // 获取根节点
    qjsonobject root = root_document.object();
    int insert_index = 0;

    // --------------------------------------------------------------------
    // 修改对象中嵌套双层数组
    // --------------------------------------------------------------------

    // 寻找节点中数组位置
    qjsonarray array_object = root.find("arraynestingarrayjson").value().toarray();
    std::cout << "节点数量: " << array_object.count() << std::endl;

    for(int index=0; index < array_object.count(); index++)
    {
        // 循环寻找uuid
        qjsonobject object = array_object.at(index).toobject();

        qstring uuid = object.value("telephone").tostring();

        // 如果找到了则移除该元素
        if(uuid == "1323344521")
        {
            insert_index = index;
            array_object.removeat(index);
            break;
        }
    }

    // --------------------------------------------------------------------
    // 开始新的数组元素
    // --------------------------------------------------------------------

    qjsonarray array;
    qjsonarray x,y;

    // 追加子数组
    x.append(11.5);
    x.append(22.4);
    x.append(33.6);

    y.append(56.7);
    y.append(78.9);
    y.append(98.4);

    // 追加到外层数组
    array.append(x);
    array.append(y);

    // 创建{}对象节点
    qjsonobject object;

    object["telephone"] = "1323344521";
    object["path"] = array;

    // 将对象插入到原位置上
    array_object.insert(insert_index,object);

    // 赋值给根
    root["arraynestingarrayjson"] = array_object;

    // 将对象设置到根
    root_document.setobject(root);

    // 规范模式
    qbytearray root_string_indented = root_document.tojson(qjsondocument::indented);

    // 写配置文件
    writeonly_string("d:/indented_config.json",root_string_indented);

    return a.exec();
}

以上就是c/c++ qt实现解析json文件的示例代码的详细内容,更多关于qt解析json文件的资料请关注其它相关文章!

相关标签: QT 解析 JSON