To tentanto mudar dinamicamente o nome do arquivo que vai fazer o download.
ja tentei fazer isso aqui na action mais não deu certo não
HttpServletResponse response = (HttpServletResponse) ActionContext.getContext().get(ServletActionContext.HTTP_RESPONSE);
response.setHeader(“Content-Disposition”, “attachment; filename=”" + “ddd.doc” + “”" );
Usei esse tutorial aqui
http://www.mkyong.com/struts2/struts-2-download-file-example/