這裡需要除了Struts本身需要的包以外,還有需要的包有:
commons-fileupload-1.2.1.jar
commons-io-1.4.jar
1 下載下傳表單
我們當然可以讀出資料庫的檔案名,可以對檔案名進行處理,比如加上日期或者uuid使其唯一,那麼便可以唯一辨別下載下傳檔案夾中的檔案。
樣式1:
<form action="downLoad" method="post">
<input type="hidden" value="<s:property value="#d.filename" />" name="fileName"/>
<button type="submit">下載下傳</button>
</form>
樣式2:
<a href="downLoad?filename=<s:property value="#d.filename" />">下載下傳</a>
樣式1采用了post送出方式,而樣式2中的a标簽我們知道是get方式。
我們知道struts攔截器處理亂碼的時候,對post有效,對get無效。需要在tomcat裡面設定才對get有效。
當然,你可以把按鈕的樣式做成連結的形式。
2 檔案下載下傳的Action
public class FileDownLoadAction extends ActionSupport
{
private String fileName;
public InputStream getInputStream() throws IOException
{
// 檔案存放路徑
String path = getRelPath() + "uploads\\" + fileName;
// 解決中文檔案名的儲存名亂碼
fileName = new String(fileName.getBytes("UTF-8"), "ISO-8859-1");
return new FileInputStream(path);
}
public String execute() throws Exception
return "success";
public String getRelPath()
String path = "";
path = ServletActionContext.getServletContext().getRealPath("/");
return path;
/******************getter,setter省略**********************/
}
3.Struts.xml
<action name="downLoad" class="com.xy.FileDownLoadAction">
<result name="success" type="stream">
<param name="contentType">application/msword</param>
<param name="inputName">inputStream</param>
<param name="contentDisposition">attachment;filename="${fileName}"</param>
<param name="bufferSize">1024</param>
</result>
</action>
我們看到有contentType屬性名,它是用來對檔案類型進行限制。