tags:

views:

1545

answers:

3

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. What is the best way to go?

Thanks!

A: 

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

Dirk Eddelbuettel
+5  A: 

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

http://qtwiki.org/Parsing_JSON_with_QT_using_standard_QT_library

ALoopingIcon
A: 

Check this out: http://nilier.blogspot.com/2010/08/json-parser-class-for-qt.html

Its a simple class for parsing JSON data, and it works exactly like the QJson library

ExplodingRat