JavaWeb 后端 <十四> 文件上传下载

Posted loveincode

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaWeb 后端 <十四> 文件上传下载相关的知识,希望对你有一定的参考价值。

1.文件上传与下载

案例:

         注册表单/保存商品等相关模块!

         --à 注册选择头像 / 商品图片

         (数据库:存储图片路径 / 图片保存到服务器中指定的目录)

1.1 文件上传

文件上传,要点:

前台:

         1. 提交方式:post

         2. 表单中有文件上传的表单项: <input type=”file” />

         3. 指定表单类型:

                   默认类型:enctype="application/x-www-form-urlencoded"

                   文件上传类型:enctype =”multipart/form-data”

手动实现文件上传

<body>    
       <form name="frm_test" action="${pageContext.request.contextPath }/upload" method="post" enctype="multipart/form-data">
            用户名:<input type="text" name="userName">  <br/>
           文件:   <input type="file" name="file_img">   <br/>
           
           <input type="submit" value="注册">
        </form>
  </body>

 

public class UploadServlet extends HttpServlet {

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        /*
        request.getParameter(""); // GET/POST
        request.getQueryString(); // 获取GET提交的数据 
        request.getInputStream(); // 获取post提交的数据   */
        
        /***********手动获取文件上传表单数据************/
        
        //1. 获取表单数据流
        InputStream in =  request.getInputStream();
        //2. 转换流
        InputStreamReader inStream = new InputStreamReader(in, "UTF-8");
        //3. 缓冲流
        BufferedReader reader = new BufferedReader(inStream);
        // 输出数据
        String str = null;
        while ((str = reader.readLine()) != null) {
            System.out.println(str);
        }
        // 关闭
        reader.close();
        inStream.close();
        in.close();
    }

 

//输出结果:
------WebKitFormBoundaryGoQviatB7iM1dhPr Content-Disposition: form-data; name="userName" 【FileItem】 Jack ------WebKitFormBoundaryGoQviatB7iM1dhPr Content-Disposition: form-data; name="file_img"; filename="reamde.txt" Content-Type: text/plain 【FileItem】    test!!!!!!!!!!!!! test!!!!!!!!!!!!! ------WebKitFormBoundaryGoQviatB7iM1dhPr--

 

Apache提供的文件上传组件:FileUpload组件

文件上传功能开发中比较常用,apache也提供了文件上传组件!

FileUpload组件:

         1. 下载源码

         2. 项目中引入jar文件

                            commons-fileupload-1.2.1.jar  【文件上传组件核心jar包】

                            commons-io-1.4.jar     【封装了对文件处理的相关工具类】

FileItemFactory factory = new DiskFileItemFactory();
ServletFileUpload upload = new ServletFileUpload(factory);
 
// upload目录,保存上传的资源
    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        
        /*********文件上传组件: 处理文件上传************/

        try {
            // 1. 文件上传工厂
            FileItemFactory factory = new DiskFileItemFactory();
            // 2. 创建文件上传核心工具类
            ServletFileUpload upload = new ServletFileUpload(factory);
// 一、设置单个文件允许的最大的大小: 30M upload.setFileSizeMax(30*1024*1024); // 二、设置文件上传表单允许的总大小: 80M upload.setSizeMax(80*1024*1024); // 三、 设置上传表单文件名的编码 // 相当于:request.setCharacterEncoding("UTF-8"); upload.setHeaderEncoding("UTF-8");
// 3. 判断: 当前表单是否为文件上传表单 if (upload.isMultipartContent(request)){ // 4. 把请求数据转换为一个个FileItem对象,再用集合封装 List<FileItem> list = upload.parseRequest(request); // 遍历: 得到每一个上传的数据 for (FileItem item: list){ // 判断:普通文本数据 if (item.isFormField()){ // 普通文本数据 String fieldName = item.getFieldName(); // 表单元素名称 String content = item.getString(); // 表单元素名称, 对应的数据 //item.getString("UTF-8"); 指定编码 System.out.println(fieldName + " " + content); } // 上传文件(文件流) ----> 上传到upload目录下 else { // 普通文本数据 String fieldName = item.getFieldName(); // 表单元素名称 String name = item.getName(); // 文件名 String content = item.getString(); // 表单元素名称, 对应的数据 String type = item.getContentType(); // 文件类型 InputStream in = item.getInputStream(); // 上传文件流 /* * 四、文件名重名 * 对于不同用户readme.txt文件,不希望覆盖! * 后台处理: 给用户添加一个唯一标记! */ // a. 随机生成一个唯一标记 String id = UUID.randomUUID().toString(); // b. 与文件名拼接 name = id +"#"+ name; // 获取上传基路径 String path = getServletContext().getRealPath("/upload"); // 创建目标文件 File file = new File(path,name); // 工具类,文件上传 item.write(file); item.delete(); //删除系统产生的临时文件 System.out.println(); } } } else { System.out.println("当前表单不是文件上传表单,处理失败!"); } } catch (Exception e) { e.printStackTrace(); } }

 

文件上传与下载,完整案例:

步骤:

1. 文件上传

2. 列表下载

Index.jsp:

<body>    
          <a href="${pageContext.request.contextPath }/upload.jsp">文件上传</a> &nbsp;&nbsp;&nbsp;
          <a href="${pageContext.request.contextPath }/fileServlet?method=downList">文件下载</a> 
          
  </body>

 

Upload.jsp:

<body>    
       <form name="frm_test" action="${pageContext.request.contextPath }/fileServlet?method=upload" method="post" enctype="multipart/form-data">
            <%--<input type="hidden" name="method" value="upload">--%>
            
            用户名:<input type="text" name="userName">  <br/>
           文件:   <input type="file" name="file_img">   <br/>
           
           <input type="submit" value="提交">
        </form>
  </body>

 

Downlist.jsp:

<body>    
    <table border="1" align="center">
        <tr>
            <th>序号</th>
            <th>文件名</th>
            <th>操作</th>
        </tr>
        <c:forEach var="en" items="${requestScope.fileNames}" varStatus="vs">
            <tr>
                <td>${vs.count }</td>
                <td>${en.value }</td>
                <td>
                    <%--<a href="${pageContext.request.contextPath }/fileServlet?method=down&..">下载</a>--%>
                    <!-- 构建一个地址  -->
                    <c:url var="url" value="fileServlet">
                        <c:param name="method" value="down"></c:param>
                        <c:param name="fileName" value="${en.key}"></c:param>
                    </c:url>
                    <!-- 使用上面地址 -->
                    <a href="${url }">下载</a>
                </td>
            </tr>
        </c:forEach>
    </table>          
  </body>

 

FileServlet.java

/**
 * 处理文件上传与下载
 * @author Jie.Yuan
 *
 */
public class FileServlet extends HttpServlet {

    public void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {

        // 获取请求参数: 区分不同的操作类型
        String method = request.getParameter("method");
        if ("upload".equals(method)) {
            // 上传
            upload(request,response);
        }
        
        else if ("downList".equals(method)) {
            // 进入下载列表
            downList(request,response);
        }
        
        else if ("down".equals(method)) {
            // 下载
            down(request,response);
        }
    }
    
    
    /**
     * 1. 上传
     */
    private void upload(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
        
        try {
            // 1. 创建工厂对象
            FileItemFactory factory = new DiskFileItemFactory();
            // 2. 文件上传核心工具类
            ServletFileUpload upload = new ServletFileUpload(factory);
            //以上是关于JavaWeb 后端 <十四> 文件上传下载的主要内容,如果未能解决你的问题,请参考以下文章

JavaWeb学习—MIME类型(十四)

javaweb VUE+ElementUI 文件上传 后端部分

JavaWeb 文件的上传下载

JavaWeb总结(十四)

javaWeb后端下载磁盘文件

javaWeb后端下载磁盘文件