views:

44

answers:

2

I don't know whether this question makes sense or not. I have huge amount of JSON data with me. I am getting that data from Server to the Client side.

Is it good idea to serialize the JSON object in server side ?

+1  A: 

Check out GSON

Related

Adam
+1  A: 

I have huge amount of JSON data with me.

Is it good idea to serialize the JSON object in server side ?

No. JSON is already serialized, that's the point of the format.

If you have non-JSON data that you want to deliver to the client then, unless it is a string, you have to serialize it so that it is in a transmittable format.

David Dorward
That means the JSON data whatever I got in the Client side is serialized. So I just want to deserialize that in the Client side.
Multiplexer