SSM网页上传文件

效果:

SSM网页上传文件_第1张图片

需要的资源:

       commons-fileupload-1.3.1.jar,commons-io-1.3.2.jar

步骤:

       1:搭建SSM框架:

       2:在配置文件springconfig.xml中添加配置

        

	
    
        
        
        
        
        
    

       3:编写上传jsp文件:upload.jsp

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>




上传文件


文件上传实例

选择一个文件:

 

       4:编辑控制器

    /**
     * 文件上传功能
     * @param file
     * @return
     * @throws IOException 
     */
    @RequestMapping(value="/upload",method=RequestMethod.POST)
    @ResponseBody
    public String upload(MultipartFile file,HttpServletRequest request) throws IOException{
    	String fileMsg = UploadFileMsg(request);
    	System.out.println("fileMsg:"+fileMsg);
        String path = request.getSession().getServletContext().getRealPath("upload");//目录
        String fileName = file.getOriginalFilename();//文件名
        System.out.println("path:"+path);
        System.out.println("fileName:"+fileName);
        File dir = new File(path,fileName);        
        if(!dir.exists()){//如果目录不存在,则创建
            dir.mkdirs();
        }
        //MultipartFile自带的解析方法
        file.transferTo(dir);//下载文件
    	System.out.println("ok");
        return "success";
    }

       5:运行,成功的话页面信息如下,且对应目录下有文件信息

SSM网页上传文件_第2张图片

你可能感兴趣的:(SSM网页上传文件)