从 HttpSession 检索 ArrayList 时出现无法将对象转换为 ArrayList 错误

发布于 2024-08-11 19:42:08 字数 174 浏览 3 评论 0原文

我已将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

屌丝范 2024-08-18 19:42:09

HttpSession#getAttribute() 方法返回 java.lang.Object

public java.lang.Object getAttribute(java.lang.String name)

您是否尝试强制转换返回的对象?

sriList = (ArrayList)session.getAttribute("scannedMatches");

The HttpSession#getAttribute() method returns java.lang.Object:

public java.lang.Object getAttribute(java.lang.String name)

Did you try to cast the returned object?

sriList = (ArrayList)session.getAttribute("scannedMatches");
温暖的光 2024-08-18 19:42:09

你必须施放它。

sriList = (ArrayList)session.getAttribute("scannedMatches");

You have to cast it.

sriList = (ArrayList)session.getAttribute("scannedMatches");
思念绕指尖 2024-08-18 19:42:09

试试这个:

Object scannedMatchesObj = session.getAttribute("scannedMatches");
if ( scannedmatchesObj instanceOf List ){
    sriList = (ArrayList)scannedMatchesObj;
    //Do your stuff...
}

try this:

Object scannedMatchesObj = session.getAttribute("scannedMatches");
if ( scannedmatchesObj instanceOf List ){
    sriList = (ArrayList)scannedMatchesObj;
    //Do your stuff...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文