1.

How Can You Store International / Unicode Characters Into A Cookie?

Answer»

One way is, before storing the COOKIE URLENCODE it.
URLEnocder.encoder(str);
And use URLDecoder.decode(str) when you GET the stored cookie.

One way is, before storing the cookie URLEncode it.
URLEnocder.encoder(str);
And use URLDecoder.decode(str) when you get the stored cookie.



Discussion

No Comment Found