servlet的文件上传和下载

tech2023-10-08  81

servlet的文件上传和下载

1.准备工作和前提条件

ide工具使用的是eclipse(自我感觉eclipse建普通的servlet的项目比idea简洁轻便)

使用tomcat版本是7

使用的servlet是2.5(建议使用这个版本,是xml配置版本)

2.新建上传文件的文件夹

在webcontent目录下新建文件夹uploadFile

这个文件夹测试文件上传和下载的文件夹

3.导入相关的依赖

commons-fileupload-1.2.1.jar

commons-io-1.4.jar

4.准别测试文件

(1)oracle.md

(2)commons-beanutils-1.9.3-bin.zip

(3)Koala.jpg

为了测试全面,我测试三种文件格式,一个是.md文档,一个是压缩文件,一个是图片

5.编写servlet

5.1文件上传

文件上传servlet package com.shaoming.servlet; import java.io.File; import java.io.*; import java.io.IOException; import java.io.PrintWriter; import java.util.List; import javax.servlet.ServletContext; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.catalina.tribes.util.Arrays; import org.apache.commons.fileupload.FileItem; import org.apache.commons.fileupload.FileUploadException; import org.apache.commons.fileupload.disk.DiskFileItemFactory; import org.apache.commons.fileupload.servlet.ServletFileUpload; import cn.hutool.core.io.FileUtil; /** * * @author Administrator 文件上传 具体步骤: 1)获得磁盘文件条目工厂 DiskFileItemFactory 要导包 2) 利用 * request 获取 真实路径 ,供临时文件存储,和 最终文件存储 ,这两个存储位置可不同,也可相同 3)对 * DiskFileItemFactory 对象设置一些 属性 4)高水平的API文件上传处理 ServletFileUpload * upload = new ServletFileUpload(factory); 目的是调用 * parseRequest(request)方法 获得 FileItem 集合list , * * 5)在 FileItem 对象中 获取信息, 遍历, 判断 表单提交过来的信息 是否是 普通文本信息 另做处理 6) 第一种. 用第三方 * 提供的 item.write( new File(path,filename) ); 直接写到磁盘上 第二种. 手动处理 * */ public class UploadServlet extends HttpServlet { public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { request.setCharacterEncoding("utf-8"); // 设置编码 // 获得磁盘文件条目工厂 DiskFileItemFactory factory = new DiskFileItemFactory(); // 获取文件需要上传到的路径 // ServletContext servletContext = request .getServletContext(); String path = request.getSession().getServletContext().getRealPath("/uploadFile") + File.separator; File[] ls = FileUtil.ls(path); System.out.println(Arrays.toString(ls)); System.out.println(path); //String path = request.getRealPath("/uploadFile"); // 如果没以下两行设置的话,上传大的 文件 会占用 很多内存, // 设置暂时存放的 存储室 , 这个存储室,可以和 最终存储文件 的目录不同 /** * 原理 它是先存到 暂时存储室,然后在真正写到 对应目录的硬盘上, 按理来说 当上传一个文件时,其实是上传了两份,第一个是以 .tem * 格式的 然后再将其真正写到 对应目录的硬盘上 */ factory.setRepository(new File(path)); // 设置 缓存的大小,当上传文件的容量超过该缓存时,直接放到 暂时存储室 factory.setSizeThreshold(1024 * 1024); // 高水平的API文件上传处理 ServletFileUpload upload = new ServletFileUpload(factory); try { // 可以上传多个文件 List<FileItem> list = (List<FileItem>) upload.parseRequest(request); for (FileItem item : list) { // 获取表单的属性名字 String name = item.getFieldName(); // 如果获取的 表单信息是普通的 文本 信息 if (item.isFormField()) { // 获取用户具体输入的字符串 ,名字起得挺好,因为表单提交过来的是 字符串类型的 String value = item.getString(); request.setAttribute(name, value); } else {// 对传入的非 简单的字符串进行处理 ,比如说二进制的 图片,电影这些 /** * 以下三步,主要获取 上传文件的名字 */ // 获取路径名 String value = item.getName(); // 索引到最后一个反斜杠 int start = value.lastIndexOf("\\"); // 截取 上传文件的 字符串名字,加1是 去掉反斜杠, String filename = value.substring(start + 1); request.setAttribute(name, filename); // 真正写到磁盘上 // 它抛出的异常 用exception 捕捉 // item.write( new File(path,filename) );//第三方提供的 // 手动写的 OutputStream out = new FileOutputStream(new File(path, filename)); InputStream in = item.getInputStream(); int length = 0; byte[] buf = new byte[1024]; System.out.println("获取上传文件的总共的容量:" + item.getSize()); // in.read(buf) 每次读到的数据存放在 buf 数组中 while ((length = in.read(buf)) != -1) { // 在 buf 数组中 取出数据 写到 (输出流)磁盘上 out.write(buf, 0, length); } in.close(); out.close(); } } } catch (FileUploadException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (Exception e) { // TODO Auto-generated catch block // e.printStackTrace(); } } }

说明:

String path = request.getSession().getServletContext().getRealPath("/uploadFile") + File.separator;

这个path就是上传文件的路径

上传文件的jsp页面 upload.jsp(放在项目的WebContent目录下) <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Jsp+Servlet upload file</title> </head> <body> <form action="/java-web/UploadServlet" method="POST" enctype="multipart/form-data"> <input type ="file" name="file1" id="file1"/><br/> <input type ="file" name="file2" if="file2"/><br/> <input type ="file" name="file3" id="file3"/><br/> <input type="submit" value="Submit" /><br/> <input type="reset" /> </form> </body> </html>

说明:

(1)form表单的请求方式必须是post

(2)form表单加入属性enctype=“multipart/form-data” 表示可以提交文件

5.2文件下载

文件下载的servlet package com.shaoming.servlet; import java.io.File; import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import javax.servlet.ServletException; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; //测试的url : localhost:8080/java-web/ServletDownload?filename=Koala.jpg public class ServletDownload extends HttpServlet { /** * Constructor of the object. */ public ServletDownload() { super(); } /** * The doGet method of the servlet. <br> * * This method is called when a form has its tag value method equals to get. * * @param request the request send by the client to the server * @param response the response send by the server to the client * @throws ServletException if an error occurred * @throws IOException if an error occurred */ public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { //获得请求文件名 String filename = request.getParameter("filename"); System.out.println(filename); //设置文件MIME类型 response.setContentType(getServletContext().getMimeType(filename)); //设置Content-Disposition response.setHeader("Content-Disposition", "attachment;filename="+filename); //读取目标文件,通过response将目标文件写到客户端 //获取目标文件的绝对路径 String path = request.getSession().getServletContext().getRealPath("/uploadFile") + File.separator; String fullFileName = path +"//"+ filename; System.out.println(fullFileName); //System.out.println(fullFileName); //读取文件 InputStream in = new FileInputStream(fullFileName); OutputStream out = response.getOutputStream(); //写文件 int b; while((b=in.read())!= -1) { out.write(b); } in.close(); out.close(); } /** * The doPost method of the servlet. <br> * * This method is called when a form has its tag value method equals to post. * * @param request the request send by the client to the server * @param response the response send by the server to the client * @throws ServletException if an error occurred * @throws IOException if an error occurred */ public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { } } 下载文件的jsp页面downloadTwo.jsp(放在项目的WebContent目录下) <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta charset="UTF-8"> <title>通过链接下载文件</title> </head> <body> <h1>通过链接下载文件</h1> <a href="/java-web/uploadFile/commons-beanutils-1.9.3-bin.zip">压缩包</a> <a href="/java-web/uploadFile/Koala.jpg">图片</a> <a href="/java-web/uploadFile/oracle.md">.md文档</a> <h1>通过servlet程序下载文件</h1> <a href="/java-web/ServletDownload?filename=commons-beanutils-1.9.3-bin.zip">压缩包</a> <a href="/java-web/ServletDownload?filename=Koala.jpg">图片</a> <a href="/java-web/ServletDownload?filename=oracle.md">.md文档</a> </body> </html>

说明:

为了简便测试,就是用超链接的方式对文件进行下载操作

6.打包部署测试

eclipse导报动态的web工程(就是servlet的项目)

1.打包

步骤

右击项目—>export—>选择web/WARfile—>next—>选择打包路径–>next—>打包成功

2.部署

把war包放到tomcat的webapp目录,启动tomcat

3.测试文件上传的url路径

localhost:8080/java-web/upload.jsp

4.测试文件下载的url路径

localhost:8080/java-web/downloadTwo.jsp

最新回复(0)