Can I have the Information of what is the difference between JSON & GSON. I have read the word GSON at some places while looking for JSON particularly.
I don’t know the clear difference between the two.
Another thing is the Words; “Marshalling” and “Unmarshalling” associated with JSON Parsing, I wonder what they are actually.
JSON is a data-interchange format. GSON is a Google library to parse JSON resources. With regards to the Marshalling, it basically means a way to translate data structures (like objects in an OOP language) to JSON… for instance:
To…