毛片不卡视频操逼,日本亚洲电影在线观看,丁香婷婷亚洲五月,五月天亲亲黄色网,五月婷婷狠,村妓网在线视频中文字幕,色综合综合色

commons-fileupload.jar下載 最新軟件|熱門排行|軟件分類|軟件專題|廠商大全

您的位置: 首頁編程開發(fā)編程工具 → commons-fileupload maven v1.2.2 官方版

commons-fileupload maven

v1.2.2 官方版 commons-fileupload maven 網(wǎng)友評分:8

同類相關(guān)軟件

軟件介紹

軟件標(biāo)簽: jar包 .jar

commons-fileupload.jar是maven中的實現(xiàn)文件上傳的控制大小的組件,通過這款開源工具,讓用戶在調(diào)用java語言時可以更加便捷,綠色資源網(wǎng)誠意推薦!

commons-fileupload-1.2.2.jar介紹

使用最為廣泛的Java文件上傳組件,Struts本身采用這個包來處理文件上傳。文檔非常詳細、簡單易用。

commons-fileupload-1.2.2.jar

使用Commons-fileupload組件實現(xiàn)文件下載

// 文件的下載

    public void doGet(HttpServletRequest request, HttpServletResponse response)

           throws ServletException, IOException {

       // 找到用戶所選定的文件

       String uuidname = request.getParameter(“filename”);

       uuidname = new String(uuidname.getBytes(“ISO8859-1”), “utf-8”);

       String realname = uuidname.substring(uuidname.indexOf(“_”)+1);

       // 確定文件的保存位置

       String savePath = getFileAddr(realname);

       File f = new File(savePath + “\\” + uuidname);

       //System.out.println(savePath+“<br/>”+uuidname);

       if (f.exists()) {

           // 設(shè)置應(yīng)答的相應(yīng)消息頭

           response.setcontentType(“application/x-msdownload”);

           String str = “attachment;filename=”+ java.NET.URLEncoder.encode(realname, “utf-8”);

           response.setHeader(“Content-Disposition”, str);

           // 創(chuàng)建一 個輸入流對象和指定的文件相關(guān)聯(lián)

           FileInputStream in = new FileInputStream(f);

           // 從response對象中獲取到輸出流對象

           OutputStream out = response.getOutputStream();

           // 從輸入流對象中讀數(shù)據(jù)寫入到輸出流對象中

           byte[] buff = new byte[1024];

           int len = 0;

           while ((len = in.read(buff)) > 0) {

              out.write(buff, 0, len);

           }

       }else{

           request.setAttribute(“message”, “下載資源不存在”);

           request.getRequestDispatcher(“/message.jsp”)。forward(request, response);

       }

    }

    //根據(jù)文件名查找路徑

    private String getFileAddr(String filename) {

       int dir1 = filename.hashCode() & 0x0f;

       int dir2 = filename.hashCode()》4 & 0x0f;

       System.out.println(dir1+“====”+dir2);

       String savePath = this.getServletContext()。getRealPath(“WEB-INF/upload”)

              + “\\” + dir1 + “\\” + dir2;

       System.out.println(“=============”+savePath);

       return savePath;

    }

軟件截圖

下載地址 電腦版

點擊報錯 軟件無法下載或下載后無法使用,請點擊報錯,謝謝!

用戶評論

熱門評論

最新評論

發(fā)表評論 查看所有評論(0)

昵稱:
請不要評論無意義或臟話,我們所有評論會有人工審核.
字數(shù): 0/500 (您的評論需要經(jīng)過審核才能顯示)