Is there anyway to copy only required values to a object from JSON string.
JSON string
{
"name":"John",
"age":31,
"city":"New York",
"place" : "Ne"
}
On conversion of above string the result should be
Object a= {"name":"John","address":"","place":"Ne"}