I am receiving a string that is not properly encoded like mystring%201, where must be mystring 1. How could I replace all characters that could be inte
mystring%201
mystring 1
You can use the URLDecoder.decode() function, like this:
String s = URLDecoder.decode(myString, "UTF-8");