文件上传

2021-07-05 06:07

阅读:367

标签:hot   商品   load   byte   exce   attribute   file   web   bean   

1. 配置上传页面

  

    

      

        

      

      

        

        

      

      

        

      

    

文件上传
商品图片:

 

2. 解析上传文件

@Controller
public class FileController {
    
    //转向文件长传页面
    @RequestMapping("/toFile.action")
    public String toFile(){
        return "file";
    }
    
    
    @RequestMapping("/file.action")
    public String updloadFile(MultipartFile photo,Model model) throws IOException{
        
        //简单方式
        FileUtils.writeByteArrayToFile
        (new File("D:\\图片样例\\"+photo.getOriginalFilename()), photo.getBytes());
        
        
        model.addAttribute("msg", "文件上传成功");
        //return "forward:/toFile.action";
        return "redirect:/toFile.action";
    }
}

3. 配置文件上传解析器

 
              class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
               
      

    

文件上传

标签:hot   商品   load   byte   exce   attribute   file   web   bean   

原文地址:http://www.cnblogs.com/gerald-x/p/7107161.html


评论


亲,登录后才可以留言!