Skip to main content

Posts

Featured

Basic over view of Json / Gson

The basic format of JSON (Javascript Object Notation)  Business object & Property & Value in the JSON  Note: The business object must match with the name of the property Gson is a Java library that can be used to convert Java Objects into their JSON representation. It can also be used to convert a JSON string to an equivalent Java object. Gson is an open-source library.  Strength of Gson Light-weight languages. Similar C-family language but completely independent languages.  Easy to read & writhe language for humans, easy to parse and manipulate for computer JSON is based on a subset on JavaScript  Provide a class that is used to parse or manipulate Json with java. Purpose of Gson Provide easy-to-use mechanisms like  toString()  and constructor (factory method) to convert Java to JSON and vice-versa Allow pre-existing unmodifiable objects to be converted to and from JSON Allow custom representations for objects Support arbitrarily complex object Generate compact and readabl

Latest Posts

Google BigQuery Create (DDL/Schema & Table Create expression) + Argument