Click to See Complete Forum and Search --> : decoding using java


StyM
11-25-2003, 09:05 PM
hello and Good dAy.

i used a javascript function escape to encode my text, and pass my encoded text to a java function,
how can i decode the text inside my java function?

need help.
thanks.

Gollum
11-26-2003, 03:34 AM
Although not entirely equivalent, you could try the URLDecoder class from java.net.
It has a single method called decode() that should do the trick.

StyM
11-27-2003, 12:20 AM
ok thanks.