Tag: struts1

试图用Apache Poi在Struts1.3下载Excel。 不从第二个请求工作

Struts_config.xml <action path="/dwnldExcel" type="ntrs.pat.action.DwnExclAction"> </action> rightMenuPanel.jsp <html:link action="dwnldExcel"><img src="resource/excel_icon.png" height="30" width="30"></html:link> xxAction.java String serverFilePath = "D:\\workbook8.xls"; //Getting the parameters via session attribute. HttpSession httpSession = request.getSession(); String filterStr = (String) httpSession.getAttribute("filterStr"); LinkedHashMap<String, ArrayList<String>> bzMap = (LinkedHashMap<String, ArrayList<String>>) httpSession.getAttribute("BizMap"); //Write to filesytem in server writetoFile(serverFilePath, filterStr, bzMap); // Read the file from server and stream it […]