如何在javaservlet和jsp间互传数据
利用HttpSession共享同一个会话的数据。这也要用到session的getAttribute()\/setAttribute()方法,和ServletContext()的使用差不多的。3、利用request共享一次请求的数据 一次请求当中,可以利用request的getAttribute()\/setAttribute()方法在servlet和jsp页面间共享数据。
在JSP页面之间传递字符串数组
reuest.setAttribute( "vvv ",vec);forward 到b.jsp b.jsp :Vector v = (Vector)request.getAttrinute( "vvv ");方法二:你可以把一个数组存到request里面 String[] array = { "2 ", "6 ", "4 "} ;然后 request.setAttribute( "array ",array);forward...