QJsonObject与QString转化封装

2019-10-12 08:11:06来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

QJsonObject与QString转化封装

经常使用QT的同学可能会发现有时候需要json字符串和json对象之间的转换,今天他来了,直接上代码:

QString InfoBase::JsonToString(const QJsonObject& json) const
{
    return QString(QJsonDocument(json).toJson(QJsonDocument::Compact));
}
 
QJsonObject InfoBase::StringToJson(const QString& str) const
{
    QJsonObject l_ret;
 
    QJsonParseError l_err;
    QJsonDocument l_doc = QJsonDocument::fromJson(str.toUtf8(), &l_err);
    if (l_err.error == QJsonParseError::NoError)
    {
        if (l_doc.isObject())
        {
            l_ret = l_doc.object();
        }
    }
    return l_ret;
}

  


原文链接:https://www.cnblogs.com/xupeidong/p/11652785.html
如有疑问请与原作者联系

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:webbench网站测压工具源码分析

下一篇:poj3045 Cow Acrobats (思维,贪心)