关于Spring MVC项目(maven)中通过fileupload上传文件

阅读更多

Spring MVC 中通过fileupload上传文件,其中项目使用maven管理。

 

1.上传文件首先需要的是导入相关支持jar包:commons-fileupload.jar,commons-io.jar

因为我是用的maven管理项目,所以要在pom文件中配置(每个人的jar包位置根据实际情况定)



	commons-fileupload
	commons-fileupload
	1.3.1


	commons-io
	commons-io
	2.4

 2.获取文件信息

/**
	 * 头像 根据Id生成存储目录
	 * @param file
	 * @param userId
	 * @param request
	 * @param response
	 * @throws IOException  
	 * @return void
	 * @throws
	 */
	@RequestMapping("/updateLogo")
	public String updateLogo(
			@RequestParam(value = "upload-file") MultipartFile file,
			@RequestParam String id, HttpServletRequest request,String base64Char,
			HttpServletResponse response) throws IOException {
		response.setContentType("text/html;charset=UTF-8");
		String fileName = file.getOriginalFilename();
		String fileFormat = fileName.substring(fileName.lastIndexOf("."));
		UUID uid = UUID.randomUUID(); 
		String newFileName = uid.toString() + fileFormat;
		String filePath = null;
		//base64Char 为剪切后的 base64位的字符串,如果不为空说明图片被剪切了①
		if(base64Char == null || "".equals(base64Char)){
			// 根据用户id获取创建上传目录
			filePath = FileUtils.getFilePath(id);②
			File descfile = new File(filePath, newFileName);// 文件路径文件名
			FileUtils.copyInputStreamToFile(file.getInputStream(), descfile);// 开始上传
		}else{
			filePath = this.userDetailsService.GenerateImage(base64Char, id,newFileName);③
		}
		//此处将图片信息保存到数据库(省略......)
		return "redirect:/userhome/home";
	}

 3.如果认为只是这样就完了的话, 那就错了 ,你的程序一定跑不起来,MultipartFile这个接口 需要在spring的配置文件中配置,加入

org.springframework.web.multipart.commons.CommonsMultipartResolver


	  
		
    	  
	

 这样就ok 了,

因为我这个功能上传用户头像,因此就包含剪切后的图像获取,所以中间穿插了一些其他知识点(①②③),具体内容下次整理了发上。。

  • commons-fileupload.rar (447.6 KB)
  • 下载次数: 5

你可能感兴趣的:(spring,mvc,mybatis,上传文件,修改头像,upload)