Request.getParameter() replacing ONLY “+” for “ ”

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP


Request.getParameter() replacing ONLY “+” for “ ”



I'm facing a problem when trying to retrieve parameters on backend.



I know that there are some reserved chars on URLs. But I have some already written LINKS that contains "+" "@", etc on it links.



Ex: www.server.com/?param=@a+b



At the backend, req.getParameter("param") returns "@a b" instead of "@a+b". Is there a workaround for this case that the "client" is already sending "+" chars to server?



I'm using App Engine on Flexible Environment with Jetty servlet container.





You can call getQueryString() and parse it however you like.
– shmosel
3 mins ago


getQueryString()









By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

Keycloak server returning user_not_found error when user is already imported with LDAP

PHP parse/syntax errors; and how to solve them?

How to scale/resize CVPixelBufferRef in objective C, iOS