Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Best JSON parser for Qt? [closed]

Tags:

json

parsing

qt

I'm using QT for Symbian and need a simple json parser. I need to be able to go from json to Qt-variant and the other way around. Is there a simple json parser that I can use? I don't want to write my own.

like image 893
Martin Avatar asked Dec 01 '09 12:12

Martin


3 Answers

You need no Additional code except QT itself to parse JSON with QT

http://doc.qt.io/qt-5/json.html

like image 150
ALoopingIcon Avatar answered Oct 03 '22 21:10

ALoopingIcon


Check out Qt-Json

Its a dead-simple class for parsing and serializing JSON data.

like image 44
Gerstmann Avatar answered Oct 03 '22 20:10

Gerstmann


The qjson project may be a good start. It has also been packaged for Debian.

like image 26
Dirk Eddelbuettel Avatar answered Oct 03 '22 21:10

Dirk Eddelbuettel