struts文件下载

• 在FileAction 的execute方法中设置contentLength、contentDisposition、
contentType等属性的值,同时还需提供getInputStream()方法,该方法返回一
个输入流;
contentType为文件的MIME类型;
contentLength为文件的长度;
contentDisposition指定客户端的处理方式;
• 配置struts.xml文件中的FileAction :
"stream">
${contentType}
${contentLength}
${contentDisposition}

【示

你可能感兴趣的:(struts文件下载)