Consider the following JSON Object,
{
"params":[{
"name":"param1",
"value" : "%0A"
},
{
"name":"param2",
"value" : "%09"
},
{
"name":"param3",
"value" : "hello%09"
}]
}
If you notice, the value fields are all encoded form of escape characters (in this case, \n, \t, hello\t respectively). Assume I can retrieve these values as params.getValue(). Now how can I decode them and get the actual values i.e \n, \t, hello\t in my example ?