ajaxupload.js java_SpringMVC结合ajaxfileupload.js实现文件无刷新上传

1 packagecom.jadyer.controller;2

3 importjava.io.File;4 importjava.io.IOException;5 importjava.io.PrintWriter;6

7 importjavax.servlet.http.HttpServletRequest;8 importjavax.servlet.http.HttpServletResponse;9

10 importorg.apache.commons.io.FileUtils;11 importorg.springframework.stereotype.Controller;12 importorg.springframework.web.bind.annotation.RequestMapping;13 importorg.springframework.web.bind.annotation.RequestParam;14 importorg.springframework.web.multipart.MultipartFile;15

16 /**

17 * SpringMVC中的文件上传18 * 1)由于SpringMVC使用的是commons-fileupload实现,所以先要将其组件引入项目中19 * 2)在SpringMVC配置文件中配置MultipartResolver处理器(可在此加入对上传文件的属性限制)20 * 3)在Controller的方法中添加MultipartFile参数(该参数用于接收表单中file组件的内容)21 * 4)编写前台表单(注意enctype="multipart/form-data"以及)22 * PS:由于这里使用了ajaxfileupload.js实现无刷新上传,故本例中未使用表单23 * ---------------------------------------------------------------------------------------------24 * 这里用到了如下的jar25 * commons-io-2.4.jar26 * commons-fileupload-1.3.jar27 * commons-logging-1.1.2.jar28 * spring-aop-3.2.4.RELEASE.jar29 * spring-beans-3.2.4.RELEASE.jar30 * spring-context-3.2.4.RELEASE.jar31 * spring-core-3.2.4.RELEASE.jar32 * spring-expression-3.2.4.RELEASE.jar33 * spring-jdbc-3.2.4.RELEASE.jar34 * spring-oxm-3.2.4.RELEASE.jar35 * spring-tx-3.2.4.RELEASE.jar36 * spring-web-3.2.4.RELEASE.jar37 * spring-webmvc-3.2.4.RELEASE.jar38 * ---------------------------------------------------------------------------------------------39 * @create Sep 14, 2013 5:06:09 PM40 *@author玄玉41 */

42 @Controller43 @RequestMapping("/test")44 public classFileUploadController {45 /**

46 * 这里这里用的是MultipartFile[] myfiles参数,所以前台就要用47 * 上传文件完毕后返回给前台[0`filepath],0表示上传成功(后跟上传后的文件路径),1表示失败(后跟失败描述)48 */

49 @RequestMapping(value="/fileUpload")50 public String addUser(@RequestParam("uname") String uname, @RequestParam MultipartFile[] myfiles, HttpServletRequest request, HttpServletResponse response) throwsIOException{51 //可以在上传文件的同时接收其它参数

52 System.out.println("收到用户[" + uname + "]的文件上传请求");53 //如果用的是Tomcat服务器,则文件会上传到\\%TOMCAT_HOME%\\webapps\\YourWebProject\\upload\\文件夹中54 //这里实现文件上传操作用的是commons.io.FileUtils类,它会自动判断/upload是否存在,不存在会自动创建

55 String realPath = request.getSession().getServletContext().getRealPath("/upload");56 //设置响应给前台内容的数据格式

57 response.setContentType("text/plain; charset=UTF-8");58 //设置响应给前台内容的PrintWriter对象

59 PrintWriter out =response.getWriter();60 //上传文件的原名(即上传前的文件名字)

61 String originalFilename = null;62 //如果只是上传一个文件,则只需要MultipartFile类型接收文件即可,而且无需显式指定@RequestParam注解63 //如果想上传多个文件,那么这里就要用MultipartFile[]类型来接收文件,并且要指定@RequestParam注解64 //上传多个文件时,前台表单中的所有的name都应该是myfiles,否则参数里的myfiles无法获取到所有上传的文件

65 for(MultipartFile myfile : myfiles){66 if(myfile.isEmpty()){67 out.print("1`请选择文件后上传");68 out.flush();69 return null;70 }else{71 originalFilename =myfile.getOriginalFilename();72 System.out.println("文件原名: " +originalFilename);73 System.out.println("文件名称: " +myfile.getName());74 System.out.println("文件长度: " +myfile.getSize());75 System.out.println("文件类型: " +myfile.getContentType());76 System.out.println("========================================");77 try{78 //这里不必处理IO流关闭的问题,因为FileUtils.copyInputStreamToFile()方法内部会自动把用到的IO流关掉79 //此处也可以使用Spring提供的MultipartFile.transferTo(File dest)方法实现文件的上传

80 FileUtils.copyInputStreamToFile(myfile.getInputStream(), newFile(realPath, originalFilename));81 } catch(IOException e) {82 System.out.println("文件[" + originalFilename + "]上传失败,堆栈轨迹如下");83 e.printStackTrace();84 out.print("1`文件上传失败,请重试!!");85 out.flush();86 return null;87 }88 }89 }90 //此时在Windows下输出的是[D:\Develop\apache-tomcat-6.0.36\webapps\AjaxFileUpload\\upload\愤怒的小鸟.jpg]91 //System.out.println(realPath + "\\" + originalFilename);92 //此时在Windows下输出的是[/AjaxFileUpload/upload/愤怒的小鸟.jpg]93 //System.out.println(request.getContextPath() + "/upload/" + originalFilename);94 //不推荐返回[realPath + "\\" + originalFilename]的值95 //因为在Windows下能被firefox显示,而firefox是不认的

96 out.print("0`" + request.getContextPath() + "/upload/" +originalFilename);97 out.flush();98 return null;99 }100 }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值