1. 程式人生 > >ajaxFileUpload+struts2實現多檔案上傳

ajaxFileUpload+struts2實現多檔案上傳

以前有介紹過ajaxFileUpload實現檔案上傳,但那是單檔案的,這次介紹多檔案上傳。

單檔案和多檔案的實現區別主要修改兩點,

一是外掛ajaxfileupload.js裡接收file檔案ID的方式

二是後臺action是陣列形式接收

2、引入jquery-1.8.0.min.js、ajaxFileUpload.js檔案

3、檔案上傳頁面核心程式碼

<body>
	<form action="" enctype="multipart/form-data">
		<h2>
			多檔案上傳
		</h2>
		<input type="file" id="file1" name="file" />
		</br>
		<input type="file" id="file2" name="file" />
		</br>
		<input type="file" id="file3" name="file" />
		</br>
		<span>
			<table id="down">
			</table>
		</span>
		</br>
		<input type="button" onclick="fileUpload();" value="上傳">
	</form>
</body>
<script type="text/javascript">
	function fileUpload() {
		var files = ['file1','file2','file3'];  //將上傳三個檔案 ID 分別為file2,file2,file3
		$.ajaxFileUpload( {
			url : 'fileUploadAction',     //用於檔案上傳的伺服器端請求地址  
			secureuri : false,            //一般設定為false  
			fileElementId : files,        //檔案上傳的id屬性  <input type="file" id="file" name="file" />  
			dataType : 'json',            //返回值型別 一般設定為json  
			success : function(data, status) {
				var fileNames = data.fileFileName; //返回的檔名 
				var filePaths = data.filePath;     //返回的檔案地址 
				for(var i=0;i<data.fileFileName.length;i++){
					//將上傳後的檔案 新增到頁面中 以進行下載
					$("#down").after("<tr><td height='25'>"+fileNames[i]+
							"</td><td><a href='downloadFile?downloadFilePath="+filePaths[i]+"'>下載</a></td></tr>")
				}
			}
		})
	}
</script>
以上fileElementId屬性接收的files引數為['file1','file2','file3']

由於是多檔案,所以我們需要修改ajaxfileupload.js 找到以下程式碼

var oldElement = jQuery('#' + fileElementId);
var newElement = jQuery(oldElement).clone();
jQuery(oldElement).attr('id', fileId);
jQuery(oldElement).before(newElement);
jQuery(oldElement).appendTo(form);
修改為:
for(var i in fileElementId){  
	var oldElement = jQuery('#' + fileElementId[i]);  
	var newElement = jQuery(oldElement).clone();  
	jQuery(oldElement).attr('id', fileId);  
	jQuery(oldElement).before(newElement);  
	jQuery(oldElement).appendTo(form);  
} 

4、檔案上傳Action
public class FileAction {
    private File[] file;              //檔案  
    private String[] fileFileName;    //檔名   
    private String[] filePath;        //檔案路徑
    private String downloadFilePath;  //檔案下載路徑
    private InputStream inputStream; 
    
    /**
     * 檔案上傳
     * @return
     */
	public String fileUpload() {
		String path = ServletActionContext.getServletContext().getRealPath("/upload");
		File file = new File(path); // 判斷資料夾是否存在,如果不存在則建立資料夾
		if (!file.exists()) {
			file.mkdir();
		}
		try {
			if (this.file != null) {
				File f[] = this.getFile();
				filePath = new String[f.length];
				for (int i = 0; i < f.length; i++) {
					String fileName = java.util.UUID.randomUUID().toString(); // 採用時間+UUID的方式隨即命名
					String name = fileName + fileFileName[i].substring(fileFileName[i].lastIndexOf(".")); //儲存在硬碟中的檔名

					FileInputStream inputStream = new FileInputStream(f[i]);
					FileOutputStream outputStream = new FileOutputStream(path+ "\\" + name);
					byte[] buf = new byte[1024];
					int length = 0;
					while ((length = inputStream.read(buf)) != -1) {
						outputStream.write(buf, 0, length);
					}
					inputStream.close();
					outputStream.flush();
					//檔案儲存的完整路徑
					// 如:D:\tomcat6\webapps\struts_ajaxfileupload\\upload\a0be14a1-f99e-4239-b54c-b37c3083134a.png
					filePath[i] = path + "\\" + name;
				}

			}
		} catch (Exception e) {
			e.printStackTrace();
		}
		return "success";
	}
	/**
	 * 檔案下載
	 * @return
	 */
	public String downloadFile() {
		String path = downloadFilePath;
		HttpServletResponse response = ServletActionContext.getResponse();
		try {
			// path是指欲下載的檔案的路徑。
			File file = new File(path);
			// 取得檔名。
			String filename = file.getName();
			// 以流的形式下載檔案。
			InputStream fis = new BufferedInputStream(new FileInputStream(path));
			byte[] buffer = new byte[fis.available()];
			fis.read(buffer);
			fis.close();
			// 清空response
			response.reset();
			// 設定response的Header
			String filenameString = new String(filename.getBytes("gbk"),"iso-8859-1");
			response.addHeader("Content-Disposition", "attachment;filename="+ filenameString);
			response.addHeader("Content-Length", "" + file.length());
			OutputStream toClient = new BufferedOutputStream(response.getOutputStream());
			response.setContentType("application/octet-stream");
			toClient.write(buffer);
			toClient.flush();
			toClient.close();
		} catch (IOException ex) {
			ex.printStackTrace();
		}
		return null;
	}
	/**
	 * 省略set get方法
	 */
	
}

5、struts配置
<!DOCTYPE struts PUBLIC 
	"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
	"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>
	<package name="ajax_code" extends="json-default">
		<!-- 檔案上傳 -->
		<action name="fileUploadAction" class="com.itmyhome.FileAction" method="fileUpload">
			<result type="json" name="success">
				<param name="contentType">text/html</param>
			</result>
		</action>
	</package>
	<package name="jsp_code" extends="struts-default">
		<!-- 檔案下載 -->		
		<action name="downloadFile" class="com.itmyhome.FileAction" method="downloadFile">   
            <result type="stream">   
                 <param name="contentType">application/octet-stream</param>    
                 <param name="inputName">inputStream</param>    
                 <param name="contentDisposition">attachment;filename=${fileName}</param>    
                 <param name="bufferSize">4096</param>   
            </result>   
       </action>  
	</package>
</struts>

瀏覽器中輸入:http://localhost:8080/struts_ajaxfileupload/index.jsp  即可進行檔案上傳

如圖: