Tools you must need to know when working with Json

JSON (JavaScript Object Notation) is a lightweight format that is used for data interchanging.It is based on a subset of JavaScript language.(More details)

JSON is built on two structures:

  • A collection of name/value pairs. In various languages, this is realized as an object, record, struct, dictionary, hash table, keyed list, or associative array. 
  • An ordered list of values. In most languages, this is realized as an array, vector, list, or sequence.
JSON format is often used for serializing and transmitting structured data over a network connection It can be seen in,
  • web services responses
  • when using Ajax
How ever there are two online tools that we can use for make it easy working with json
  1. Json generator.
    This site let you generate random json as you want. Just after log in to site there is a example and just by pressing "generate" button you can generate a set of json objects.

    Link to site

  2. Json editor
    This tool let you analyse a json string to know what kind of data actually on that json string. You just have to put a json string in left side of the window and click right arrow and it will show the elements in that string separately.

    Link to site

No comments:

Post a Comment