EvilZone

Other => Found it on the Webs => : daxda March 15, 2014, 06:12:51 PM

: JSON viewer
: daxda March 15, 2014, 06:12:51 PM
Been working a lot with JSON lately and found this site on which you can paste in your JSON body and view the contents of it in a Treeview window. It's pretty basic but better than staring at a blob of values and parentheses :)

http://jsonviewer.stack.hu/

(http://i.imgur.com/RmEjYXW.png)
(http://i.imgur.com/lnypx4X.png)
: Re: JSON viewer
: nrael March 17, 2014, 04:07:41 AM
site is offline... :o

I use this page, maybe you like it too

http://json.parser.online.fr/
: Re: JSON viewer
: Phage March 17, 2014, 08:35:32 AM
Looks really interesting and quite useful when you're working with non-sql databases. And yes, the link works.
: Re: JSON viewer
: Psycho_Coder March 17, 2014, 11:15:53 AM
My current project is to make a JSON parser with java. It can read and write to JSON files, add new objects. It will have support for conversion from .xml ro .json and vice versa. I will release it as a library :)
: Re: JSON viewer
: Kulverstukas March 17, 2014, 11:23:43 AM
My current project is to make a JSON parser with java. It can read and write to JSON files, add new objects. It will have support for conversion from .xml ro .json and vice versa. I will release it as a library :)
Well there's this one I use all the time: http://code.google.com/p/json-simple/
: Re: JSON viewer
: Psycho_Coder March 17, 2014, 11:35:00 AM
Well there's this one I use all the time: http://code.google.com/p/json-simple/

Seen that already. You have this one as well :- https://github.com/douglascrockford/JSON-java

Got the last link from json.org/java/

But I wanna create one by myself, a minimal and very simplistic one :)

Also the one on Google code they have used JFlex but I am not using any. and hence its good for learning purpose as well.