One way would be like this -
in struts-config.xml file set the <forward path="action path of nextform">. Here I am assuming that you are extending your class with ActionForm. so before the next page is displayed, the validate() method will be called , where you can set form values from HttpServletRequest parameter.
other way can be -
using request.getAttribute() method in second jsp form in
struts tag.