溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

C/C++?QT如何實(shí)現(xiàn)解析JSON文件

發(fā)布時間:2022-01-10 11:18:53 來源:億速云 閱讀:261 作者:iii 欄目:開發(fā)技術(shù)

這篇“C/C++ QT如何實(shí)現(xiàn)解析JSON文件”文章的知識點(diǎn)大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細(xì),步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“C/C++ QT如何實(shí)現(xiàn)解析JSON文件”文章吧。

JSON是一種輕量級的數(shù)據(jù)交換格式,它是基于ECMAScript的一個子集,使用完全獨(dú)立于編程語言的文本格式來存儲和表示數(shù)據(jù),簡潔清晰的的層次結(jié)構(gòu)使得JSON成為理想的數(shù)據(jù)交換語言,Qt庫為JSON的相關(guān)操作提供了完整的類支持.

創(chuàng)建一個解析文件,命名為config.json我們將通過代碼依次解析這個JSON文件中的每一個參數(shù),具體解析代碼如下:

{
    "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
                ]
            ]
        }
    ]
}

實(shí)現(xiàn)修改單層根節(jié)點(diǎn)下面指定的節(jié)點(diǎn)元素,修改的原理是讀入到內(nèi)存替換后在全部寫出到文件.

// 讀取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;
    }

    // 獲取根節(jié)點(diǎn)
    QJsonObject root = root_document.object();

    // 修改根節(jié)點(diǎn)下的子節(jié)點(diǎn)
    root["blog"] = "https://www.baidu.com";
    root["enable"] = false;
    root["status"] = 2048;

    // 將object設(shè)置為本文檔的主要對象
    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;

    // 規(guī)范模式輸出
    QByteArray root_string_indented = root_document.toJson(QJsonDocument::Indented);
    std::cout << "規(guī)范模式: " << 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();
}

實(shí)現(xiàn)修改單層對象與數(shù)組下面指定的節(jié)點(diǎn)元素,如上配置文件中的GetDict/GetList既是我們需要解析的內(nèi)容.

// 讀取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;
    }

    // 獲取根節(jié)點(diǎn)
    QJsonObject root = root_document.object();

    // --------------------------------------------------------------------
    // 修改GetDict對象內(nèi)容
    // --------------------------------------------------------------------

    // 找到對象地址,并修改
    QJsonObject get_dict_ptr = root.find("GetDict").value().toObject();

    // 修改對象內(nèi)存數(shù)據(jù)
    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;

    // 將對象設(shè)置到根
    root_document.setObject(root);

    // 規(guī)范模式
    QByteArray root_string_indented = root_document.toJson(QJsonDocument::Indented);

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

    // --------------------------------------------------------------------
    // 修改GetList數(shù)組內(nèi)容
    // --------------------------------------------------------------------

    // 找到數(shù)組并修改
    QJsonArray get_list_ptr = root.find("GetList").value().toArray();

    // 替換指定下標(biāo)的數(shù)組元素
    get_list_ptr.replace(0,22);
    get_list_ptr.replace(1,33);

    // 將當(dāng)前數(shù)組元素直接覆蓋到原始位置
    QJsonArray item = {"admin","root","lyshark"};
    get_list_ptr = item;

    // 設(shè)置到原始數(shù)組
    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();
}

實(shí)現(xiàn)修改對象內(nèi)對象Value列表下面指定的節(jié)點(diǎn)元素,如上配置文件中的ObjectInArrayJson既是我們需要解析的內(nèi)容.

// 讀取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;
    }

    // 獲取根節(jié)點(diǎn)
    QJsonObject root = root_document.object();

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

    // 找到對象地址并修改
    QJsonObject get_dict_ptr = root.find("ObjectInArrayJson").value().toObject();

    // 迭代器輸出對象中的數(shù)據(jù)
    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;

        // 循環(huán)輸出元素
        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")
        {
            // 替換整個數(shù)組
            QJsonArray value = {1,2,3,4,5};
            get_dict_ptr[key] = value;
            break;
        }
        else if(key.toStdString() == "One")
        {
            // 替換指定數(shù)組元素
            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;

    // 將對象設(shè)置到根
    root_document.setObject(root);

    // 規(guī)范模式
    QByteArray root_string_indented = root_document.toJson(QJsonDocument::Indented);

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

    return a.exec();
}

實(shí)現(xiàn)修改匿名數(shù)組中的數(shù)組元素下面指定的節(jié)點(diǎn)元素,如上配置文件中的ArrayJson既是我們需要解析的內(nèi)容.

// 讀取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;
    }

    // 獲取根節(jié)點(diǎn)
    QJsonObject root = root_document.object();

    // --------------------------------------------------------------------
    // 修改數(shù)組中的數(shù)組
    // --------------------------------------------------------------------

    QJsonArray array_value = root.value("ArrayJson").toArray();
    int insert_index = 0;

    // 循環(huán)查找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();

            // 尋找指定行下標(biāo),并將其彈出
            if(address == "192.168.1.3")
            {
                std::cout << "找到該行下標(biāo): " << 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;

    // 將對象設(shè)置到根
    root_document.setObject(root);

    // 規(guī)范模式
    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();
}

實(shí)現(xiàn)修改數(shù)組中對象元素下面指定的節(jié)點(diǎn)元素,如上配置文件中的ObjectJson既是我們需要解析的內(nèi)容.

// 讀取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;
    }

    // 獲取根節(jié)點(diǎn)
    QJsonObject root = root_document.object();

    // --------------------------------------------------------------------
    // 修改數(shù)組中的對象數(shù)值
    // --------------------------------------------------------------------

    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")
            {
                // 首先根據(jù)對象序號移除當(dāng)前對象
                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;

    // 將對象設(shè)置到根
    root_document.setObject(root);

    // 規(guī)范模式
    QByteArray root_string_indented = root_document.toJson(QJsonDocument::Indented);

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

    return a.exec();
}

實(shí)現(xiàn)修改對象中數(shù)組元素下面指定的節(jié)點(diǎn)元素,如上配置文件中的ObjectArrayJson既是我們需要解析的內(nèi)容.

// 讀取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;
    }

    // 獲取根節(jié)點(diǎn)
    QJsonObject root = root_document.object();

    // --------------------------------------------------------------------
    // 修改對象中的數(shù)組元素
    // --------------------------------------------------------------------

    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();

                // 替換指定數(shù)組元素
                ulist_array.replace(0,100);
                ulist_array.replace(1,200);
                ulist_array.replace(2,300);

                // 輸出替換后數(shù)組元素
                for(int index =0; index < ulist_array.count(); index ++)
                {
                    int val = ulist_array.at(index).toInt();
                    std::cout << "替換后: " << val << std::endl;
                }

                // 首先根據(jù)對象序號移除當(dāng)前對象
                array_value.removeAt(index);

                // 接著增加一個新的對象與新列表
                object_value["uname"] = uname;
                object_value["ulist"] = ulist_array;

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

    // 賦值給根
    root["ObjectArrayJson"] = array_value;

    // 將對象設(shè)置到根
    root_document.setObject(root);

    // 規(guī)范模式
    QByteArray root_string_indented = root_document.toJson(QJsonDocument::Indented);

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

    return a.exec();
}

實(shí)現(xiàn)修改對象嵌套對象嵌套對象下面指定的節(jié)點(diǎn)元素,如上配置文件中的NestingObjectJson既是我們需要解析的內(nèi)容.

// 讀取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;
    }

    // 獲取根節(jié)點(diǎn)
    // https://www.cnblogs.com/lyshark
    QJsonObject root = root_document.object();
    int insert_index = 0;

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

    // 尋找節(jié)點(diǎn)中數(shù)組位置
    QJsonArray array_object = root.find("NestingObjectJson").value().toArray();
    std::cout << "節(jié)點(diǎn)數(shù)量: " << array_object.count() << std::endl;

    for(int index=0; index < array_object.count(); index++)
    {
        // 循環(huán)尋找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;
        }
    }

    // --------------------------------------------------------------------
    // 開始插入新對象
    // --------------------------------------------------------------------

    // 開始創(chuàng)建新的對象
    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;

    // 將對象設(shè)置到根
    root_document.setObject(root);

    // 規(guī)范模式
    QByteArray root_string_indented = root_document.toJson(QJsonDocument::Indented);

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

    return a.exec();
}

實(shí)現(xiàn)修改對象嵌套多層數(shù)組下面指定的節(jié)點(diǎn)元素,如上配置文件中的ArrayNestingArrayJson既是我們需要解析的內(nèi)容.

// 讀取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;
    }

    // 獲取根節(jié)點(diǎn)
    QJsonObject root = root_document.object();
    int insert_index = 0;

    // --------------------------------------------------------------------
    // 修改對象中嵌套雙層數(shù)組
    // --------------------------------------------------------------------

    // 尋找節(jié)點(diǎn)中數(shù)組位置
    QJsonArray array_object = root.find("ArrayNestingArrayJson").value().toArray();
    std::cout << "節(jié)點(diǎn)數(shù)量: " << array_object.count() << std::endl;

    for(int index=0; index < array_object.count(); index++)
    {
        // 循環(huán)尋找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;
        }
    }

    // --------------------------------------------------------------------
    // 開始新的數(shù)組元素
    // --------------------------------------------------------------------

    QJsonArray array;
    QJsonArray x,y;

    // 追加子數(shù)組
    x.append(11.5);
    x.append(22.4);
    x.append(33.6);

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

    // 追加到外層數(shù)組
    array.append(x);
    array.append(y);

    // 創(chuàng)建{}對象節(jié)點(diǎn)
    QJsonObject object;

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

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

    // 賦值給根
    root["ArrayNestingArrayJson"] = array_object;

    // 將對象設(shè)置到根
    root_document.setObject(root);

    // 規(guī)范模式
    QByteArray root_string_indented = root_document.toJson(QJsonDocument::Indented);

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

    return a.exec();
}

以上就是關(guān)于“C/C++ QT如何實(shí)現(xiàn)解析JSON文件”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI