Map<String,String> map=request.getParameterMap();
^ 是不可修改的地图。
Set s1= map.keySet();
Set s2= map2.keySet();/* another keyset of local map*/
使用s1.retainAll(s2)
抛出异常:at java.util.collections$unmodifiablecollection.retainall
这里request.getParameterMap()
返回一个不可修改的地图。我尝试创建一个本地地图。但问题仍然存在。提出一些解决方案。