struts2 檔案流, 檔案輸出到瀏覽器 檔案下載
眾所周知,直接在頁面中插入a標籤引入檔案地址可以解決,但是這樣即暴露了專案路徑而且再某些情況下會有一些小問題,最好的辦法是用I/O流,
(readlinne方式),今天我記錄的是struts2中的檔案輸入輸出框架的用法:
struts.xml配置檔案片段:
<result name="download" type="stream">
<!-- 下載檔案型別 -->
<param name="contentType">text/plain</param>
<!-- 下載對話方塊所彈出的檔名 -->
<param name="contentDisposition">
attachment;fileName=${currentLogName}
</param>
<!-- 下載的InputStream流,Struts2自己動對應Action中的getDownloadFile方法,該方法必須返回InputStream 型別 -->
<param name="inputName">downloadFile</param>
</result>
<result name="operate">${nextPage}</result>
<!-- result的Type必須為stream -->
<result name="displayLog" type="stream">
<!-- 下載檔案型別 -->
<param name="contentType">text/plain</param>
<!-- 下載對話方塊所彈出的檔名 -->
<param name="contentDisposition">
fileName=${currentLogName}
</param>
<!-- 下載的InputStream流,Struts2自己動對應Action中的getDownloadFile方法,該方法必須返回InputStream 型別 -->
<param name="inputName">displayLog</param>
</result>
注意1: contentDisposition 引數控制在瀏覽器中顯示檔名等, attachment;指明檔案以附件形式存在,即點link時會有一個提示框提示下載還是開啟, 如果不配置attachment,那麼預設是inline的,即瀏覽器會嘗試直接開啟檔案. 其它引數用法直接看註釋吧.
JAVA程式碼片段:
public String download(){
System.out.println("download Log action requested!");
return "download";
}
public InputStream getDownloadFile() {
ResourceBundle resource = ResourceBundle.getBundle("voicefileInfo");
this.setLogDir(resource.getString("LogPath"));
String tempfile;
tempfile = resource.getString("LogDir").concat(this.getCurrentLogName());
System.out.println("getDownloadFile()===>" + tempfile);
return ServletActionContext.getServletContext().getResourceAsStream("/"+tempfile);
}
public String displayLog(){
System.out.println("Display Log action requested!");
return "displayLog";
}
public InputStream getDisplayLog() {
ResourceBundle resource = ResourceBundle.getBundle("voicefileInfo");
this.setLogDir(resource.getString("LogPath"));
String tempfile;
tempfile = resource.getString("LogDir").concat(this.getCurrentLogName());
System.out.println("getDownloadFile()===>" + tempfile);
return ServletActionContext.getServletContext().getResourceAsStream("/"+tempfile);
}
意外小插曲: java 流中的方法getResourceAsStream("...")只支援相對路徑,不識別絕對路徑...