首页 > 作文

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

更新时间:2023-04-04 11:07:06 阅读: 评论:0

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

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

{    "blog": "/d/file/titlepic/lyshark",    "enable": true,    "status": 1024,        "getdict": {"address":"192.168.1.1","urname":"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","urname":"admin"},        {"address":"192.168.1.2","urname":"root"},        {"address":"192.168.1.3","urname":"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/lysharkqstring readonly_string(qstring file_path){    qfile this_file_ptr(file_path);    if(fal == this_file_ptr.exists())    {        return "none";    }    if(fal == this_file_ptr.open(qiodevice::readonly | qiodevice::text))    {        return "none";    }    qstring string_value = this_file_ptr.readall();    this_file_ptr.clo();    return string_value;}// 写出json到文件bool writeonly_string(qstring file_path, qstring file_data){    qfile this_file_ptr(file_path);    if(fal == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))    {        return fal;    }    qbytearray write_byte = file_data.toutf8();    this_file_ptr.write(write_byte,write_byte.length());    this_file_ptr.clo();    return true;}int main(int argc, char *argv[]){    qcoreapplication a(argc, argv);    // 读文件    qstring readonly_config = readonly_string("d:/config.json");    // 开始解析 解析成功返回qjsondocument对象否则返回null    qjsonparerror err_rpt;    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);    if (err_rpt.error != qjsonparerror::noerror && !root_document.isnull())    {        return 0;    }    // 获取根节点    qjsonobject root = root_document.object();    // 修改根节点下的子节点    root["blog"] = "https://www.baidu.com";    root["enable"] = fal;    root["status"] = 2048;    // 将object设置为本文档的主要对象    root_document.tobject(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/lysharkqstring readonly_string(qstring file_path){    qfile this_file_ptr(file_path);    if(fal == this_file_ptr.exists())    {        return "none";    }    if(fal == this_file_ptr.open(qiodevice::readonly | qiodevice::text))    {        return "none";    }    qstring string_value = this_file_ptr.readall();    this_file_ptr.clo();    return string_value;}// 写出json到文件bool writeonly_string(qstring file_path, qstring file_data){    qfile this_file_ptr(file_path);    if(fal == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))    {        return fal;    }    qbytearray write_byte = file_data.toutf8();    this_file_ptr.write(write_byte,write_byte.length());    this_file_ptr.clo();    return true;}int main(int argc, char *argv[]){    qcoreapplication a(argc, argv);    // 读文件    qstring readonly_config = readonly_string("d:/config.json");    // 开始解析 解析成功返回qjsondocument对象否则返回null    qjsonparerror err_rpt;    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);    if (err_rpt.error != qjsonparerror::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["urname"] = "lyshark";    get_dict_ptr["password"] = "12345678";    get_dict_ptr["update"] = "2021-09-25";    // 赋值给根    root["getdict"] = get_dict_ptr;    // 将对象设置到根    root_document.tobject(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.tobject(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(fal == this_file_ptr.exists())    {        return "none";    }    if(fal == this_file_ptr.open(qiodevice::readonly | qiodevice::text))    {        return "none";    }    qstring string_value = this_file_ptr.readall();    this_file_ptr.clo();    return string_value;}// 写出json到文件// https://www.cnblogs.com/lysharkbool writeonly_string(qstring file_path, qstring file_data){    qfile this_file_ptr(file_path);    if(fal == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))    {        return fal;    }    qbytearray write_byte = file_data.toutf8();    this_file_ptr.write(write_byte,write_byte.length());    this_file_ptr.clo();    return true;}int main(int argc, char *argv[]){    qcoreapplication a(argc, argv);    // 读文件    qstring readonly_config = readonly_string("d:/config.json");    // 开始解析 解析成功返回qjsondocument对象否则返回null    qjsonparerror err_rpt;    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);    if (err_rpt.error != qjsonparerror::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;        }        el 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.tobject(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/lysharkqstring readonly_string(qstring file_path){    qfile this_file_ptr(file_path);    if(fal == this_file_ptr.exists())    {        return "none";    }    if(fal == this_file_ptr.open(qiodevice::readonly | qiodevice::text))    {        return "none";    }    qstring string_value = this_file_ptr.readall();    this_file_ptr.clo();    return string_value;}// 写出json到文件bool writeonly_string(qstring file_path, qstring file_data){    qfile this_file_ptr(file_path);    if(fal == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))    {        return fal;    }    qbytearray write_byte = file_data.toutf8();    this_file_ptr.write(write_byte,write_byte.length());    this_file_ptr.clo();    return true;}int main(int argc, char *argv[]){    qcoreapplication a(argc, argv);    // 读文件    qstring readonly_config = readonly_string("d:/config.json");    // 开始解析 解析成功返回qjsondocument对象否则返回null    qjsonparerror err_rpt;    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);    if (err_rpt.error != qjsonparerror::noerror && !root_document.isnull())    {        return 0;    }    // 获取根节点    qjsonobject root = root_document.object();    // --------------------------------------------------------------------    // 修改数组中的数组    // --------------------------------------------------------------------    qjsonarray array_value = root.value("arrayjson").toarray();    int inrt_index = 0;    // 循环查找ip地址,找到后将其弹出    for(int index=0; index < array_value.count(); index++)    {        qjsonvalue part = array_value.at(index);        if(part.isarray())        {            qstring address = part.toarray().at(0).tostring();            // 寻找指定行下标,并将其弹出            if(address == "192.168.1.3")            {                std::cout << "找到该行下标: " << index << std::endl;                inrt_index = index;                array_value.removeat(index);            }        }    }    // 新增一行ip地址    qjsonarray item = {"192.168.1.3","lyshark","123456"};    array_value.inrt(inrt_index,item);    // 赋值给根    root["arrayjson"] = array_value;    // 将对象设置到根    root_document.tobject(root);    // 规范模式    qbytearray root_string_indented = root_document.tojson(qjsondocument::indented);    // 写配置文件    // https://www.cnblogs.com/lyshark    writeonly_string("d:/ind湖北省考试院官网ented_config.json",root_string_indented);    return a.exec();}

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

// 读取json文本qstring readonly_string(qstring file_path){    qfile this_file_ptr(file_path);    if(fal == this_file_ptr.exists())    {        return "none";    }    if(fal == this_file_ptr.open(qiodevice::readonly | qiodevice::text))    {        return "none";    }    qstring string_value = this_file_ptr.readall();    this_file_ptr.clo();    return string_value;}// 写出json到文件// https://www.cnblogs.com/lysharkbool writeonly_string(qstring file_path, qstring file_data){    qfile this_file_ptr(file_path);    if(fal == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))    {        return fal;    }    qbytearray write_byte = file_data.toutf8();    this_file_ptr.write(write_byte,write_byte.length());    this_file_ptr.clo();    return true;}int main(int argc, char *argv[]){    qcoreapplication a(argc, argv);    // 读文件    qstring readonly_config = readonly_string("d:/config.json");    // 开始解析 解析成功返回qjsondocument对象否则返回null    qjsonparerror err_rpt;    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);    if (err_rpt.error != qjsonparerror::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.impty())        {            qstring address = object_value.value("address").tostring();            qstring urname = object_value.value("urname").tostring();            std::cout << "地址: " << address.tostdstring() << " 用户名: " << urname.tostdstring() << std::endl;        }        // 第二种输出方式        qvariantmap map = object_value.tovariantmap();        if(map.contains("address") && map.contains("urname"))        {            qstring address_map = map["address"].tostring();            qstring urname_map = map["urname"].tostring();            std::cout << "地址: " << address_map.tostdstring() << " 用户名: " << urname_map.tostdstring() << std::endl;        }        */        // 开始移除指定行        qvariantmap map = object_value.tovariantmap();        if(map.contains("address") && map.contains("urname"))        {            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["urname"] = "lyshark";                // 插入到移除的位置上                array_value.inrt(index,object_value);                break;            }        }    }    // 赋值给根    root["objectjson"] = array_value;    // 将对象设置到根    root_document.tobject(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(fal == this_file_ptr.exists())    {        return "none";    }    if(fal == this_file_ptr.open(qiodevice::readonly | qiodevice::text))    {        return "none";    }    qstring string_value = this_file_ptr.readall();    this_file_ptr.clo();    return string_value;}// 写出json到文件// https://www.cnblogs.com/lysharkbool writeonly_string(qstring file_path, qstring file_data){    qfile this_file_ptr(file_path);    if(fal == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))    {        return fal;    }    qbytearray write_byte = file_data.toutf8();    this_file_ptr.write(write_byte,write_byte.length());    this_file_ptr.clo();    return true;}int main(int argc, char *argv[]){    qcoreapplication a(argc, argv);    // 读文件    qstring readonly_config = readonly_string("d:/config.json");    // 开始解析 解析成功返回qjsondocument对象否则返回null    qjsonparerror err_rpt;    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);    if (err_rpt.error != qjsonparerror::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") &adreamscenevenmp;& 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.inrt(index,object_value);                break;            }        }    }    // 赋值给根    root["objectarrayjson"] = array_value;    // 将对象设置到根    root_document.tobject(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(fal == this_file_ptr.exists())    {        return "none";    }    if(fal == this_file_ptr.open(qiodevice::readonly | qiodevice::text))    {        return "none";    }    qstring string_value = this_file_ptr.readall();    this_file_ptr.clo();    return string_value;}// 写出json到文件bool writeonly_string(qstring file_path, qstring file_data){    qfile this_file_ptr(file_path);    if(fal == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))    {        return fal;    }    qbytearray write_byte = file_data.toutf8();    this_file_ptr.write(write_byte,write_byte.length());    this_file_ptr.clo();    return true;}int main(int argc, char *argv[]){    qcoreapplication a(argc, argv);    // 读文件    qstring readonly_config = readonly_string("d:/config.json");    // 开始解析 解析成功返回qjsondocument对象否则返回null    qjsonparerror err_rpt;    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);    if (err_rpt.error != qjsonpare查理定律rror::noerror && !root_document.isnull())    {        return 0;    }    // 获取根节点    // https://www.cnblogs.com/lyshark    qjsonobject root = root_document.object();    int inrt_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")        {            inrt_index = index;            array_object.removeat(index);            break;        }    }    // --------------------------------------------------------------------    // 开始插入新对象    // --------------------------------------------------------------------    // 开始创建新的对象    qjsonobject sub_json;    sub_json.inrt("lat","100.5");    sub_json.inrt("lon","200.5");    qjsonobject new_json;    new_json.inrt("uuid","1005");    new_json.inrt("basic",sub_json);    // 将对象插入到原位置上    array_object.inrt(inrt_index,new_json);    // 赋值给根    root["nestingobjectjson"] = array_object;    // 将对象设置到根    root_document.tobject(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(fal == this_file_ptr.exists())    {        return "none";    }    // https://www.cnblogs.com/lyshark    if(fal == this_file_ptr.open(qiodevice::readonly | qiodevice::text))    {        return "none";    }    qstring string_value = this_file_ptr.r社会公益活动eadall();    this_file_ptr.clo();    return string_value;}// 写出json到文件bool writeonly_string(qstring file_path, qstring file_data){    qfile this_file_ptr(file_path);    if(fal == this_file_ptr.open(qiodevice::writeonly | qiodevice::text))    {        return fal;    }    qbytearray write_byte = file_data.toutf8();    this_file_ptr.write(write_byte,write_byte.length());    this_file_ptr.clo();    return true;}int main(int argc, char *argv[]){    qcoreapplication a(argc, argv);    // 读文件    qstring readonly_config = readonly_string("d:/config.json");    // 开始解析 解析成功返回qjsondocument对象否则返回null    qjsonparerror err_rpt;    qjsondocument root_document = qjsondocument::fromjson(readonly_config.toutf8(), &err_rpt);    if (err_rpt.error != qjsonparerror::noerror && !root_document.isnull())    {        return 0;    }    // 获取根节点    qjsonobject root = root_document.object();    int inrt_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")        {            inrt_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.inrt(inrt_index,object);    // 赋值给根    root["arraynestingarrayjson"] = array_object;    // 将对象设置到根    root_document.tobject(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文件的资料请关注www.887551.com其它相关文章!

本文发布于:2023-04-04 11:07:03,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/zuowen/b0036d5b511cb259c34d204c6e1ec1a1.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

本文word下载地址:C/C++ QT实现解析JSON文件的示例代码.doc

本文 PDF 下载地址:C/C++ QT实现解析JSON文件的示例代码.pdf

标签:对象   节点   数组   元素
相关文章
留言与评论(共有 0 条评论)
   
验证码:
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图