Struts2檔案上傳例子


在Struts2, <s:file> 標籤用於建立一個HTML檔案上傳元件,允許使用者從本地磁碟選擇檔案,並將其上傳到伺服器。在本教學中,您將建立與檔案上傳元件JSP頁面,設定最大大小和允許上傳檔案的內容型別,並顯示上傳檔案的詳細資訊。

這裡建立一個Web工程:strut2uploadfile,來演示在多個核取方塊如何設定的預設值,整個專案的結構如下圖所示:

1. 動作類

Action類的檔案上傳,宣告「File」變數來儲存使用者上傳的檔案,兩個字串變數以儲存檔案名和內容型別。「檔案上傳攔截器」通過設定「X」的ContentType(),並設定「X」FileName()會自動注入上傳的檔案細節,確保方法名拼寫正確。

P.S X是以儲存上傳的檔案中的變數。

檔案上傳功能是依賴於「檔案上傳攔截器」,確保將其納入行動的堆疊。幸運的是,預設的堆疊已經包含了「檔案上傳攔截器」。

FileUploadAction.java

package com.tw511.common.action;

import java.io.File;

import com.opensymphony.xwork2.ActionSupport;

public class FileUploadAction extends ActionSupport{

	private File fileUpload;
	private String fileUploadContentType;
	private String fileUploadFileName;

	public String getFileUploadContentType() {
		return fileUploadContentType;
	}

	public void setFileUploadContentType(String fileUploadContentType) {
		this.fileUploadContentType = fileUploadContentType;
	}

	public String getFileUploadFileName() {
		return fileUploadFileName;
	}

	public void setFileUploadFileName(String fileUploadFileName) {
		this.fileUploadFileName = fileUploadFileName;
	}

	public File getFileUpload() {
		return fileUpload;
	}

	public void setFileUpload(File fileUpload) {
		this.fileUpload = fileUpload;
	}

	public String execute() throws Exception{
		
		return SUCCESS;
		
	}
	
	public String display() {
		return NONE;
	}
	
}

2. 結果頁面

使用<s:file>標籤來渲染一個檔案上傳元件,並設定表單的enctype型別為:「multipart/form-data」。

fileupload.jsp

<%@ taglib prefix="s" uri="/struts-tags" %>
<html>
<head>
<s:head />
</head>

<body>
<h1>Struts 2 <s:file> file upload example</h1>

<s:form action="resultAction" namespace="/" 
method="POST" enctype="multipart/form-data">

<s:file name="fileUpload" label="Select a File to upload" size="40" />

<s:submit value="submit" name="submit" />
	
</s:form>

</body>
</html>

result.jsp

<%@ taglib prefix="s" uri="/struts-tags" %>
<html>

<body>
<h1>Struts 2 <s:file> file upload example</h1>

<div><div class="ads-in-post hide_if_width_less_800">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- 728x90 - After2ndH4 -->
<ins class="adsbygoogle hide_if_width_less_800" 
     
     data-ad-client="ca-pub-2836379775501347"
     data-ad-slot="3642936086"
	 data-ad-region="yiibairegion"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div></div><h2>
   File Name : <s:property value="fileUploadFileName"/> 
</h2> 

<h2>
   Content Type : <s:property value="fileUploadContentType"/> 
</h2> 

<h2>
   File : <s:property value="fileUpload"/> 
</h2> 

</body>
</html>

3. struts.xml

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
 
<struts>

 	<constant name="struts.devMode" value="true" />
 	<constant name="struts.custom.i18n.resources" value="global" />
 	
	<package name="default" namespace="/" extends="struts-default">
		
	<action name="fileUploadAction" 
	    class="com.tw511.common.action.FileUploadAction" method="display">
	    <result name="none">/pages/fileupload.jsp</result>
	</action>
		
	<action name="resultAction" class="com.tw511.common.action.FileUploadAction">
	    <interceptor-ref name="exception"/>
            <interceptor-ref name="i18n"/>
            <interceptor-ref name="fileUpload">
       		<param name="allowedTypes">text/plain</param>
       		<param name="maximumSize">10240</param>
  	    </interceptor-ref> 
            <interceptor-ref name="params">
                <param name="excludeParams">dojo\..*,^struts\..*</param>
            </interceptor-ref>
            <interceptor-ref name="validation">
                <param name="excludeMethods">input,back,cancel,browse</param>
            </interceptor-ref>
            <interceptor-ref name="workflow">
                <param name="excludeMethods">input,back,cancel,browse</param>
            </interceptor-ref>
    
	    <result name="success">/pages/result.jsp</result>
	    <result name="input">/pages/fileupload.jsp</result>
			
	</action>
   </package>	
</struts>

檔案大小限制
在這個例子中,您將通過「檔案上傳攔截」上傳檔案大小的限制, 該值以位元組為單位計數。在本範例中,上載檔案的最大尺寸是10KB。

註:上傳檔案的預設最大檔案大小為2MB

檔案型別
可以通過設定「檔案上傳攔截器」允許的檔案型別。在這種情況下,上傳檔案只接受「text/plain」型別。

在Struts2中,有好幾種方面做到這一點,檢視Struts2的檔案上傳文件

4. 範例

http://localhost:8080/Struts2Example/fileUploadAction.action


錯誤資訊提示,如果您上傳一個檔案,該檔案超過10KB,或者未選文字檔案。


上傳名為「tw511.com.txt」的文字檔案, 檔案大小 : 5kb.


上傳的檔案將被視為一個臨時檔案,具有長的隨機檔案名,如:upload__376584a7_12981122379__8000_00000010.tmp. 請確保這個臨時檔案複製到其他地方。 閱讀檔案實用文件複製檔案。

參考

  1. Struts 2 檔案文件
  2. http://struts.apache.org/2.0.14/docs/file-upload.html
  3. http://struts.apache.org/2.0.14/docs/how-do-we-upload-files.html
  4. http://commons.apache.org/io/api-1.4/org/apache/commons/io/FileUtils.html


下載程式碼 – http://pan.baidu.com/s/1eQDH07S