JSP文件上传 enctype="multipart/form-data"

问题

当上传文件时,表单需设置 enctype="multipart/form-data",即:

<form action="UpLoadServlet" method="post" enctype="multipart/form-data">
    ……
</form>

这时如果表单中除了文件,还有其他类型的内容时,Servlet中用request是获取不到值的。

解决

关于表单中只有文件上传内容的部分见菜鸟教程,这里不多做赘述。

这里仅列出主体部分代码:

picAdd.jsp

<form action="UpLoadServlet" method="post" enctype="multipart/form-data">
    <div class="row form-group">
        <div class="col col-md-2"><label for="text-input" class=" form-control-label">网页链接:</label></div>
        <div class="col-12 col-md-10"><input type="text" name="blogLink" class="form-control"></div>
    </div>
    <div class="row form-group">
        <div class="col col-md-2"><label for="text-input" class=" form-control-label">图片:</label></div>
        <div class="col-12 col-md-10"><input type="file" name="picLink" ></div>
    </div>
    <div class="row form-group">
        <div class="col col-md-2"><label for="text-input" class=" form-control-label">主页显示的文本:</label></div>
        <div class="col-12 col-md-10"><input type="text" name="viewText" class="form-control"></div>
    </div>
    <div class="row form-group">
        <div class="col col-md-2"><label for="text-input" class=" form-control-label">图片加载失败时显示的内容:</label></div>
        <div class="col-12 col-md-10"><input type="text" name="failText" class="form-control">	</div>
   </div>
   <div class="form-group text-right">
	   <button type="submit" class="btn btn-primary btn-md">
	       <i class="fa fa-dot-circle-o"></i> 保存
	   </button>
   </div>
</form>

UpLoadServlet.java

package com.laku.fec.controller;

import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import java.util.List;

import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
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;
import org.apache.ibatis.session.SqlSession;

import com.laku.fec.model.entity.Blog;
import com.laku.fec.model.service.IPersonService;
import com.laku.mybatis.MybatisUtils;

/**
 * Servlet implementation class UploadServlet
 */
@WebServlet("/UploadServlet")
public class UpLoadServlet extends HttpServlet {
	
	private static final long serialVersionUID = 1L;
    
    // 上传文件存储目录
    private static final String UPLOAD_DIRECTORY = "upload";
 
    // 上传配置
    private static final int MEMORY_THRESHOLD   = 1024 * 1024 * 3;  // 3MB
    private static final int MAX_FILE_SIZE      = 1024 * 1024 * 40; // 40MB
    private static final int MAX_REQUEST_SIZE   = 1024 * 1024 * 50; // 50MB
 
    /**
     * 上传数据及保存文件
     */
    protected void doPost(HttpServletRequest request,
        HttpServletResponse response) throws ServletException, IOException {
    	
    	//文件上传**************************
        // 检测是否为多媒体上传
        if (!ServletFileUpload.isMultipartContent(request)) {
            // 如果不是则停止
            PrintWriter writer = response.getWriter();
            writer.println("Error: 表单必须包含 enctype=multipart/form-data");
            writer.flush();
            return;
        }
 
        // 配置上传参数
        DiskFileItemFactory factory = new DiskFileItemFactory();
        // 设置内存临界值 - 超过后将产生临时文件并存储于临时目录中
        factory.setSizeThreshold(MEMORY_THRESHOLD);
        // 设置临时存储目录
        factory.setRepository(new File(System.getProperty("java.io.tmpdir")));
 
        ServletFileUpload upload = new ServletFileUpload(factory);
         
        // 设置最大文件上传值
        upload.setFileSizeMax(MAX_FILE_SIZE);
         
        // 设置最大请求值 (包含文件和表单数据)
        upload.setSizeMax(MAX_REQUEST_SIZE);
        
        // 中文处理
        upload.setHeaderEncoding("UTF-8"); 

        // 构造临时路径来存储上传的文件
        // 这个路径相对当前应用的目录
        String uploadPath = getServletContext().getRealPath("/") + File.separator + UPLOAD_DIRECTORY;
        System.out.println("1:"+getServletContext().getRealPath("/"));
        System.out.println("2:"+File.separator);
        System.out.println("uploadPath:"+uploadPath);
         
        // 如果目录不存在则创建
        File uploadDir = new File(uploadPath);
        if (!uploadDir.exists()) {
            uploadDir.mkdir();
        }
        
        //表单的其他参数
        String blogLink="";//1
        String filePath="";//2
        String viewText="";//3
        String failText="";//4
        
        try {
            // 解析请求的内容提取文件数据
            @SuppressWarnings("unchecked")
            List<FileItem> formItems = upload.parseRequest(request);
             
            if (formItems != null && formItems.size() > 0) {
                // 迭代表单数据
            	int cnt = 0;
                for (FileItem item : formItems) {
                	cnt++;
                    // 处理不在表单中的字段(处理文件)
                    if (!item.isFormField()) {
                        String fileName = new File(item.getName()).getName();
                        filePath = uploadPath + File.separator + fileName;
                        File storeFile = new File(filePath);
                        // 在控制台输出文件的上传路径
                        System.out.println("filePath:"+filePath);
                        // 保存文件到硬盘
                        item.write(storeFile);
                        request.setAttribute("message",
                            "文件上传成功!");
                    }else{//处理表单中的非文件
                    	//获取value值
                    	if(cnt==1) blogLink=item.getString("UTF-8");
                    	else if(cnt==3) viewText=item.getString("UTF-8");
                    	else if(cnt==4) failText=item.getString("UTF-8");
                    	System.out.println("blogLink:"+blogLink);
                    	System.out.println("viewText:"+viewText);
                    	System.out.println("failText:"+failText);
                    }
                }
            }
        } catch (Exception ex) {
            request.setAttribute("message",
                    "错误信息: " + ex.getMessage());
        }
        
        //其余表单内容处理**************************

        SqlSession sqlSession = MybatisUtils.getSqlSession();
    	IPersonService service = sqlSession.getMapper(IPersonService.class);
    	 //中文编码
      	response.setContentType("text/html;charset=gb2312");
        //封装和提交
        Blog b = new Blog(blogLink, filePath, viewText, failText);
        int i = service.addPic(b);
        sqlSession.commit();
        
        // 跳转
        if(i>0){
        	response.getWriter().println("<script> type='text/javascript'>window.alert('轮播图添加成功!');window.location.href='BackServlet?method=findBlog';</script>");
        }else{
        	response.getWriter().println("<script> type='text/javascript'>window.alert('添加失败!');window.location.href='backStage/picAdd.jsp';</script>");
        }
    }

}

其中第86-90113-121行为非文件表单处理的部分。

发布了73 篇原创文章 · 获赞 55 · 访问量 6万+

猜你喜欢

转载自blog.csdn.net/qq_35756383/article/details/89460181