SyntaxFix
Write A Post
Hire A Developer
Questions
The string you've got is in application/x-www-form-urlencoded encoding.
application/x-www-form-urlencoded
Use URLDecoder to convert it to Java String.
URLDecoder.decode( url, "UTF-8" );