I have a spring based web application running on Apache Tomcat 7.0.39 and get request that contains parameter values having special characters (UTF-8 encoded).
For example:
street=R%C3%BCbenkamp+246
I need to pass this values to a DB lookup but first decode them. How shall I do it?
I tried:
URLDecoder.decode(street, "UTF-8");
but it seems that the value stays the same after decoding...