关于从JSP页面HttpServletRequest中对getAttribute请求进行类型转换对象的正确方法的任何想法?
我用Google搜索了,但似乎常见的解决方案就是在代码中坚持使用抑制警告......我非常想避免这种情况。
我目前有:
HashMap<String, ArrayList<HashMap<String, String>>> accounts = (HashMap<String, ArrayList<HashMap<String, String>>>)request.getAttribute("accounts");
编译器正在给我这个警告: 未选中从Object转换为HashMap
先谢谢!!
MB。