Showing posts from August, 2015

Data types,Variable and Method declaration in Scala

In previous post we discussed fundamental of Scala and set-up Scala development environment . Here we will walk through various language construct and use REPL(Scala interpreter/interactive shell) to execute the same. Data types:-  Scala supports a…

How to pretty print JSON using Gson and Jackson

JSON is widely used in web development as data exchange format because of its light weight nature.By default JSON is plain string however JSON looks scary if it is not formatted and in may situation formatted JSON is need for debugging.Here we will se…

How to convert JSON to Object and Object to JSON using Google Gson

In previous post we learned How to parse/encode-decode JSON using JSON.simple. JSON is known for its light weight data exchange format. In web centric application integrated with Object oriented infrastructure, their will be high volume of data excha…

JSON parsing in java - JSON endoding and decoding in java

In previous post we discussed JSON is future of web centric application development . JSON is future, so better learn it and use it seamlessly in development process.The main agenda of this post is learn how do we process JSON document( Read and …

Software system supporting XML and JSON

In previous post , we saw why JSON is trending in town when we need to choose between JSON and XML as data interchange format. However, XML is preferred when document presentation and mixed data representation become priority. Here we will list down s…

Load More
That is All