主頁(yè) > 知識(shí)庫(kù) > JSP使用Common FileUpload組件實(shí)現(xiàn)文件上傳及限制上傳類型實(shí)例代碼

JSP使用Common FileUpload組件實(shí)現(xiàn)文件上傳及限制上傳類型實(shí)例代碼

熱門(mén)標(biāo)簽:南通通訊外呼系統(tǒng)產(chǎn)品介紹 自繪地圖標(biāo)注數(shù)據(jù) 電銷機(jī)器人免培訓(xùn) 潤(rùn)滑油銷售電銷機(jī)器人 海外圖書(shū)館地圖標(biāo)注點(diǎn) 如何看懂地圖標(biāo)注點(diǎn) 電話機(jī)器人需要使用網(wǎng)絡(luò)嗎 給地圖標(biāo)注得傭金 外呼系統(tǒng)使用方法

1、將commons-fileupload-1.3.3.jar復(fù)制到Web應(yīng)用的lib文件夾下,在WebRoot目錄下創(chuàng)建limit.jsp頁(yè)面,在該頁(yè)面中添加一個(gè)文件域的表單,設(shè)置類型為    multipart/form-data。代碼如下:

body>
  h2>上傳圖書(shū)課件/h2>
  form action="LimitFile" name="one" enctype="multipart/form-data" method="post">
    選擇一個(gè)rar文件:
    input type="file" name="fileupload" value="upload" /> 
    input type="submit" value="上傳"> input type="reset" value="取消">
  /form>
 /body> 

  上述代碼指定提交后將請(qǐng)求提交給LimitFile處理,LimitFile(Servlet)用來(lái)處理上傳文件及判斷文件類型是否匹配,顯示上傳結(jié)果。

2、創(chuàng)建名為L(zhǎng)imitFile的Servlet,并在doPost()方法中編寫(xiě)實(shí)現(xiàn)代碼,如下所示:

public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    request.setCharacterEncoding("utf-8");
    response.setCharacterEncoding("utf-8");
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    String uploadpath = "";
    DiskFileItemFactory factory = new DiskFileItemFactory();
    //設(shè)置是否使用臨時(shí)文件保存解析出來(lái)的數(shù)據(jù)的那個(gè)臨界值,該方法傳入?yún)?shù)的單位是字節(jié)。
    factory.setSizeThreshold(30 * 1024);
    //用于設(shè)置setSizeThreshold()方法中提到的臨時(shí)文件的存放目錄,這里要求使用絕對(duì)路徑。
    factory.setRepository(factory.getRepository());
    ServletFileUpload upload = new ServletFileUpload(factory);
    List list = null;
    try{
      list = upload.parseRequest(request);
      String[] limit = new String[]{".jpg", ".gif", ".png", ".bmp"};
      //定義限制的文件類型
      SuffixFileFilter filter = new SuffixFileFilter(limit);
      //獲取SuffixFileFilter實(shí)例
      Iterator iterator = list.iterator();
      while(iterator.hasNext()){
        FileItem item =(FileItem)iterator.next();
        if(!item.isFormField()){
          String filePath = item.getName();
          if(filePath != null){
            File filename= new File(filePath);
            File uploadFile = new File(request.getSession().getServletContext().getRealPath("/") + "upload");
            uploadpath = uploadFile.getAbsolutePath()+File.pathSeparator + uploadpath;
            //因?yàn)槁窂胶竺娑嗔藗€(gè)";"號(hào),所以要去掉
            uploadpath = uploadpath.substring(0, uploadpath.length()-1);
            File saveFile = new File(uploadpath,filename.getName());
            boolean flag = filter.accept(saveFile);
            if(flag){
              out.print("禁止上傳傳圖片文件");
              break;
            }else{
              try {
                item.write(saveFile);
                out.print("文件上傳成功");
              } catch (Exception e) {
                out.print("文件上傳失敗了");
                e.printStackTrace();
              }
            }
          }
        }
      }
    }catch(FileUploadException e){
      e.printStackTrace();
    }
  }

上述代碼在字節(jié)串?dāng)?shù)組limit中定義了不允許上傳的文件類型,然后將該數(shù)組傳遞給SuffixFileFilter類的構(gòu)造函數(shù)。在通過(guò)該類的accept()方法驗(yàn)證當(dāng)前上傳的文件是否符合條件。最后將文件保存到項(xiàng)目的upload目錄下。

總結(jié)

以上所述是小編給大家介紹的JSP使用Common FileUpload組件實(shí)現(xiàn)文件上傳及限制上傳類型實(shí)例代碼,希望對(duì)大家有所幫助,如果大家有任何疑問(wèn)歡迎給我留言,小編會(huì)及時(shí)回復(fù)大家的!

您可能感興趣的文章:
  • javascript實(shí)現(xiàn)限制上傳文件大小
  • 客戶端js判斷文件類型和文件大小即限制上傳大小
  • javascript驗(yàn)證上傳文件的類型限制必須為某些格式
  • JavaScript 上傳文件限制參數(shù)案例詳解

標(biāo)簽:黃石 南京 銅川 廣州 大連 貸款邀約 樂(lè)山 內(nèi)江

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《JSP使用Common FileUpload組件實(shí)現(xiàn)文件上傳及限制上傳類型實(shí)例代碼》,本文關(guān)鍵詞  JSP,使用,Common,FileUpload,組件,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《JSP使用Common FileUpload組件實(shí)現(xiàn)文件上傳及限制上傳類型實(shí)例代碼》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于JSP使用Common FileUpload組件實(shí)現(xiàn)文件上傳及限制上傳類型實(shí)例代碼的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章