- , . JSON / Jackson , ObjectMapper Stringfiyed JSON,
"{"age":29,"messages":["msg 1","msg 2","msg 3"],"name":"mkyong"}"
, Javascript , , JSON, jQuery.
...
var myJson = JSONString.parse() | jQuery.parseJSON(JSONString);
..
myJson.age;
myJson.name;
parse() , jQuery, , . , , jQuery.
,
- , . , . , Base64 . , .
, .
,
SERVER
1) Jackson creates JSON String
2) Server encodes into Base64
3) Send
CLIENT
1) Receive
2) Decode base64
3) parse JSON String