如何将 ArrayList 从一个 servlet 传递到另一个 servlet?

发布于 2024-10-05 07:06:09 字数 151 浏览 4 评论 0原文

我已经将 arraylist1 从一个 servlet 发送到另一个 servlet。有用。现在我想将 arraylist2 传递给另一个 jsp/servlet,但出现错误:java.util.nullPointer Exception。我该如何解决这个问题?

I have already sent arraylist1 from one servlet to another. It works. Now I want to pass arraylist2 to another jsp/servlet, but I get an error: java.util.nullPointer Exception. How can I resolve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

七月上 2024-10-12 07:06:09
RequestDispatcher disp2 = request.getRequestDispatcher("NewServlet.java"); 

应该是

RequestDispatcher disp2 = request.getRequestDispatcher(pathToYourServlet); 

路径是页面结束地址:
http://localhost/yourApp/pathToYourServlet

RequestDispatcher disp2 = request.getRequestDispatcher("NewServlet.java"); 

should be

RequestDispatcher disp2 = request.getRequestDispatcher(pathToYourServlet); 

The path is the end of the page adress:
http://localhost/yourApp/pathToYourServlet

維他命╮ 2024-10-12 07:06:09

您需要查看空指针的完整堆栈跟踪以确定它来自哪里。然后您应该逐行调试以查看空值在哪里。从那里您应该能够追溯到源头。这些是非常笼统的陈述,但鉴于提供的信息很少,它们是我解决您的问题的方式。

You need to look at the full stack trace of the null pointer to establish where it is coming from. Then you should debug through that line by line to see where the null is. From there you should be able to back trace to the source. These are very general statements, but they are how I would approach your problem given the little information provided.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文