佳木斯湛栽影视文化发展公司

主頁 > 知識庫 > AjaxFileUpload+Struts2實現(xiàn)多文件上傳功能

AjaxFileUpload+Struts2實現(xiàn)多文件上傳功能

熱門標簽:Mysql連接數(shù)設置 銀行業(yè)務 科大訊飛語音識別系統(tǒng) 電子圍欄 阿里云 團購網(wǎng)站 服務器配置 Linux服務器

本文重點給大家介紹AjaxFileUpload+Struts2實現(xiàn)多文件上傳功能,具體實現(xiàn)代碼大家參考下本文。

單文件和多文件的實現(xiàn)區(qū)別主要修改兩點,

一是插件ajaxfileupload.js里接收file文件ID的方式

二是后臺action是數(shù)組形式接收

1、ajaxFileUpload文件下載地址http://www.phpletter.com/Demo/AjaxFileUpload-Demo/

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;idata.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參數(shù)為['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); // 判斷文件夾是否存在,如果不存在則創(chuàng)建文件夾 
    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  即可進行文件上傳

如圖:

項目源碼下載:http://demo.jb51.net/js/2017/struts_ajaxfileupload.rar

總結(jié)

以上所述是小編給大家介紹的AjaxFileUpload+Struts2實現(xiàn)多文件上傳功能,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

您可能感興趣的文章:
  • 基于jquery ajax的多文件上傳進度條過程解析
  • 利用SpringMVC和Ajax實現(xiàn)文件上傳功能
  • PHP實現(xiàn)帶進度條的Ajax文件上傳功能示例
  • php+ajax 文件上傳代碼實例
  • AjaxUpLoad.js實現(xiàn)文件上傳
  • AjaxUpLoad.js實現(xiàn)文件上傳功能
  • php+ajax實現(xiàn)無刷新文件上傳功能(ajaxuploadfile)
  • ajaxFileupload實現(xiàn)多文件上傳功能
  • AjaxFileUpload結(jié)合Struts2實現(xiàn)多文件上傳(動態(tài)添加文件上傳框)
  • Ajax實現(xiàn)文件上傳功能(Spring MVC)

標簽:衢州 蚌埠 大理 廣元 衡水 棗莊 江蘇 萍鄉(xiāng)

巨人網(wǎng)絡通訊聲明:本文標題《AjaxFileUpload+Struts2實現(xiàn)多文件上傳功能》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266
    太谷县| 武冈市| 广元市| 山丹县| 开封市| 望江县| 临颍县| 酒泉市| 许昌市| 莆田市| 丹阳市| 安泽县| 昌乐县| 巴林左旗| 阳城县| 四川省| 阳新县| 汉源县| 许昌县| 上犹县| 定襄县| 湖北省| 峨眉山市| 苗栗县| 株洲县| 霍林郭勒市| 桑植县| 南通市| 中方县| 同仁县| 屏山县| 时尚| 叙永县| 宁武县| 卢龙县| 沿河| 会宁县| 瑞金市| 轮台县| 芦溪县| 昌江|