java - How to remove HttpServletRequest parameters (in JSP)? -


how can httpservletrequest parameter (especially in jsp) unset or removed (like in php using unset($_post['index']) function)? have tried following.

map requestmap=request.getparametermap(); requestmap.remove("index"); 

but says

no modifications allowed locked parametermap

is there way unset request parameters?

is there way unset request parameters?

afaik, not within jsp (or servlet matter).

but write filter wrapped current request in way replaces parameter map.


Comments

Popular posts from this blog

All overlapping substrings matching a java regex -

c++ - Using OpenSSL in a multi-threaded application -

php - Deleting/Renaming a locked file -