Qt and JSON solution
-
Are there any good and well-working solutions that as simple to use as Qt Framework?
As example:
@
QFile file("file.json");
file.open(QIODevice::ReadOnly);
QJsonDocument doc;
doc.load(file);
QJsonElement el = doc.nextChild();
qDebug() << el.text();
@I will love it! )
-
I found "QJson":http://qjson.sourceforge.net/ but it isn't that I actually finding.
-
Lars recently created new package, which is in Qt Project's playground now: "LINK":http://codereview.qt-project.org/#admin,project,playground/qtbinaryjson,info
I have not tried that, though. Also, Qt5 has QtJsonDB module - I don't know what it does, really, but you might check it out. Up until now, most people I know were happy with QJson, though.