vote up 0 vote down star

in our web service we set a cookie through JavaScript wich we read again in Java (Servlet)

however we need to escape the value of the cookie because it may contain illegal characters such as '&' which messes up the cookie.

is there a transparent way to escape (JavaScript) and unescape again (JAVA) for this?

thanks, Pieter Goddijn

flag

54% accept rate
Define "transparent way". – Cerebrus May 19 at 10:52

1 Answer

vote up 3 vote down check

In java you got StringEscapeUtils from Commons Lang to escape/unescape.

In Javascript you escape through encodeURIComponent, but I think the Commons component I gave to you will satisfy your needs.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.