I am working on a Java web application. This application receives URL parameters from 3rd party's app. Therefore, value of the URL parameter may not be encoded. How do I parse the URL parameter value when parameter value contains unencoded '&' (encode value %26)?
For example: "page.jsp?title=Street & Smith&address=1223"
Here, 3rd party passed unencoded parameter value: 'Street & Smith'
Thanks M.F.H