开发者

How to Pass Array from One Servlet to Another Servlet?

开发者 https://www.devze.com 2023-01-28 11:54 出处:网络
I want to pass multiple values from one se开发者_开发技巧rvlet to another one servlet. Please tell me how to pass that?You can

I want to pass multiple values from one se开发者_开发技巧rvlet to another one servlet. Please tell me how to pass that?


You can

  • put your array in request context as an attribute using request.setAttribute()
  • forward the request to second servlet using RequestDispatcher.forward()
  • in your second servlet read the value using request.getAttribute()


Depending if you use sessions:

  1. Store the array in the session variable using session.setAttribute();
  2. Retrieve the array using session.getAttribute();

However the variable will stay until the session dies, you overwrite it with something else, or you remove it.

If you forward one servlet to another servlet, you can store it in the request variable:

  1. request.setAttribute()

Which you can read after forwarding using request.getAttribute() after calling

RequestDispatcher.forward()

Note this does not work if you're doing a redirect instead of a servlet forward.


You can store the array in the user session in servlet 1 and read it from servlet 2 getting it from the user session. Make sure you delete the array from session in servlet 2.

0

精彩评论

暂无评论...
验证码 换一张
取 消