JSP servlet實(shí)現(xiàn)文件上傳下載和刪除
本文實(shí)例為大家分享了Android九宮格圖片展示的具體代碼,供大家參考,具體內(nèi)容如下
由于存儲空間,對一般用戶而言,就是用來操作存儲文件的,所以這兩天,特意看了一下windows下用servlet實(shí)現(xiàn)文件上傳、下載和刪除,下面是詳細(xì)代碼說明
上傳:
用的是commons-fileupload-1.2.2.jar和commons-io-2.0.1.jar組件,可以去apache官網(wǎng)上去下載,然后放到WebRoot/WEB-INF/lib目錄下
upload.html
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=GBK"> <title>File upload</title> </head> <body> <!-- action="fileupload"對應(yīng)web.xml中<servlet-mapping>中<url-pattern>的設(shè)置.--> <!-- 必須是multipart的表單數(shù)據(jù),才能完整的傳遞文件數(shù)據(jù) --> <form name="myform" action="fileupload" method="post" enctype="multipart/form-data"> File:<br> <input type="file" name="myfile"><br> <br> <input type="submit" name="submit" value="Commit"> </form> </body> </html>
web.xml里加上下面幾行:
<servlet> <servlet-name>Upload</servlet-name> <servlet-class>am.demo.Upload</servlet-class> </servlet> <servlet-mapping> <servlet-name>Upload</servlet-name> <url-pattern>/fileupload</url-pattern> </servlet-mapping>
src目錄下新建文件Upload.java:
package am.demo; import java.io.File; import java.io.IOException; import java.util.Iterator; import java.util.List; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.fileupload.FileItem; import org.apache.commons.fileupload.disk.DiskFileItemFactory; import org.apache.commons.fileupload.servlet.ServletFileUpload; @SuppressWarnings("serial") public class Upload extends HttpServlet { private String uploadPath = "d://temp"; // 上傳文件的目錄 @SuppressWarnings("unchecked") public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { try { // Create a factory for disk-based file items DiskFileItemFactory factory = new DiskFileItemFactory(); // Create a new file upload handler ServletFileUpload upload = new ServletFileUpload(factory); List<FileItem> items = upload.parseRequest(request);// 得到所有的文件 Iterator<FileItem> i = items.iterator(); while (i.hasNext()) { FileItem fi = (FileItem) i.next(); String fileName = fi.getName(); if (fileName != null) { File fullFile = new File(fi.getName()); File savedFile = new File(uploadPath, fullFile.getName()); fi.write(savedFile); } } response.setContentType("text/html;charset=GBK"); response.getWriter().print( "<mce:script language='javascript'><!-- alert('上傳成功');window.location.href='index.jsp'; // --></mce:script>"); } catch (Exception e) { // 可以跳轉(zhuǎn)出錯(cuò)頁面 e.printStackTrace(); } } public void init() throws ServletException { File uploadFile = new File(uploadPath); if (!uploadFile.exists()) { uploadFile.mkdirs(); } } }
再看下載Downlaod.java:
package am.demo; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.OutputStream; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; @SuppressWarnings("serial") public class Download extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { String aFileName = new String(request.getParameter("name").getBytes( "iso8859-1"), "gbk"); File fileLoad = new File("d:/temp", aFileName); FileInputStream in = null; // 輸入流 OutputStream out = response.getOutputStream(); byte b[] = new byte[1024]; try { response.setContentType("application/x-msdownload;"); response.setHeader("Content-disposition", "attachment; filename=" + new String(aFileName.getBytes("GBK"), "ISO-8859-1")); // download the file. in = new FileInputStream(fileLoad); int n = 0; while ((n = in.read(b)) != -1) { out.write(b, 0, n); } } catch (Throwable e) { e.printStackTrace(); } finally { try { in.close(); out.close(); } catch (Throwable e) { e.printStackTrace(); } } } public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { doGet(request, response); } }
刪除Delete.java:
package am.demo; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; @SuppressWarnings("serial") public class Delete extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws FileNotFoundException, IOException { String aFileName = new String(request.getParameter("name").getBytes( "iso8859-1"), "gbk"); File file = new File("d:/temp", aFileName); response.setContentType("text/html;charset=GBK"); if (!file.isDirectory()) { file.delete(); response.getWriter().print( "<mce:script language='javascript'><!-- alert('刪除成功');window.location.href='index.jsp'; // --></mce:script>"); } else { } } public void doPost(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { doGet(request, response); } }
因?yàn)閡buntu server是黑屏,本人用的是ubuntu server10.04,不方便用瀏覽器來查看文件,因?yàn)闆]有圖形界面,也不方便調(diào)試,所以可以先在windows上測試通過,然后把相應(yīng)文件拷到ubuntu server中的tomcat相應(yīng)目錄下,可以通過samba來傳文件,但遇到一個(gè)問題,就是中文亂碼的問題,因?yàn)樵陂_始安裝時(shí),選的是英文,后面用網(wǎng)上的一些辦法,還是沒有解決中文亂碼的問題,有知道的大俠,還煩請轉(zhuǎn)告。
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持我們。
上一篇:SpringMail使用過程中的報(bào)錯(cuò)解決辦法
欄 目:JSP編程
下一篇:web前端超出兩行用省略號表示的實(shí)現(xiàn)方法
本文標(biāo)題:JSP servlet實(shí)現(xiàn)文件上傳下載和刪除
本文地址:http://mengdiqiu.com.cn/a1/JSPbiancheng/11444.html
您可能感興趣的文章
- 01-11在JSP中使用formatNumber控制要顯示的小數(shù)位數(shù)方法
- 01-11jsp文件下載功能實(shí)現(xiàn)代碼
- 01-11JSP頁面跳轉(zhuǎn)方法大全
- 01-11Spring獲取ApplicationContext對象工具類的實(shí)現(xiàn)方法
- 01-11jsp 使用request為頁面添加靜態(tài)數(shù)據(jù)的實(shí)例
- 01-11web前端超出兩行用省略號表示的實(shí)現(xiàn)方法
- 01-11JSP狀態(tài)管理的簡單介紹
- 01-11jsp+servlet實(shí)現(xiàn)文件上傳與下載功能
- 01-11將properties文件的配置設(shè)置為整個(gè)Web應(yīng)用的全局變量實(shí)現(xiàn)方法
- 01-11JSP的setProperty的使用方法


閱讀排行
本欄相關(guān)
- 01-11web下載文件和跳轉(zhuǎn)的方法
- 01-11Spring注入Date類型的三種方法總結(jié)
- 01-11在JSP中使用formatNumber控制要顯示的小
- 01-11Properties 持久的屬性集的實(shí)例詳解
- 01-11EJB3.0部署消息驅(qū)動(dòng)Bean拋javax.naming.Na
- 01-11jsp文件下載功能實(shí)現(xiàn)代碼
- 01-11JSP頁面跳轉(zhuǎn)方法大全
- 01-11詳解Spring的核心機(jī)制依賴注入
- 01-11jsp 使用request為頁面添加靜態(tài)數(shù)據(jù)的實(shí)
- 01-11Spring獲取ApplicationContext對象工具類的
隨機(jī)閱讀
- 01-10C#中split用法實(shí)例總結(jié)
- 01-10delphi制作wav文件的方法
- 01-10使用C語言求解撲克牌的順子及n個(gè)骰子
- 08-05dedecms(織夢)副欄目數(shù)量限制代碼修改
- 01-11ajax實(shí)現(xiàn)頁面的局部加載
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 08-05DEDE織夢data目錄下的sessions文件夾有什
- 08-05織夢dedecms什么時(shí)候用欄目交叉功能?
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 04-02jquery與jsp,用jquery