I have an environment where strings are percent encoded by Actionscript escape() function and then passed to Java for decoding.
I have for example a test string "m é".
It is passed to Actionscript escape() that outputs "m%20%E9"
When I try to decode it with Java:
URLDecoder.decode("m%20%E9", "UTF-8")
The result is:
"m ?"
%E9 seems the unicode point for "é" character, but it is not quite understood by Java decode.
Is there a way to decode in Java the strings encoded by Actionscript escape()?
What escape format do these function use since they seem to be different?
Thanks in advance for any help,
Paolo