How can I store international / Unicode characters into a cookie?
Created May 7, 2012
Sajith Kumar Example:
I would like to put this String: "até" The problem is when I get the cookie value I receive "at".
----------------------
One way is that before storing the cookie URLEncode it.
URLEnocder.encoder(str);
And use URLDecoder.decode(str) when you get the stored cookie.