bean:write相当于<%=request.getAttribute("something")%>
例子一:某处设置了request.setAttribute("hello","hello world");则在某个jsp页面中,用struts的write标签取出并显示的方式如下:<bean:write name="hello"/>,则页面上显示出hello world。