从 HttpSession 检索 ArrayList 时出现无法将对象转换为 ArrayList 错误
我已将 ArrayList 保存到会话对象中。我试图使用
sriList = session.getAttribute("scannedMatches");
我收到编译时错误“无法从对象转换为 ArrayList”来检索它。如何从会话对象中获取 ArrayList。
I have saved an ArrayList to the session object. I am trying to retrieve it using
sriList = session.getAttribute("scannedMatches");
I am getting the compile time error "Cannot convert from Object to ArrayList". How can I get my ArrayList back from the session object.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
HttpSession#getAttribute()
方法返回java.lang.Object
:您是否尝试强制转换返回的对象?
The
HttpSession#getAttribute()
method returnsjava.lang.Object
:Did you try to cast the returned object?
你必须施放它。
You have to cast it.
试试这个:
try this: