【Spring-MVC AJAX文件上传】
前言
准备筹划一个自己的个人网站,初步的架构设计采用SSH(Spring-MVC,Spring,Hibernate),在这里
顺便记录一下设计和开发过程,以备参考。后续会陆续更新文档,如有任何问题,欢迎各位不吝指出,共
同学习。
环境
eclipse | 4.3.2 |
maven | 3.2.1 |
Spring-MVC | 3.2.3.RELEASE |
Spring | Spring |
Hibernate | 3.2.5 |
文件上传是很多项目都会使用到的功能,SpringMVC当然也提供了这个功能。不过本人不建议在项目中
通过form表单来提交文件上传,这样做的局限性很大。对于文件上传等类似的功能,推荐使用第三方的
插件(或者自己写的插件)来实现,这样可以减轻服务端的压力,同时呈现的页面效果也会更好,而且
可插拔,扩展性好。
在这里使用AJAX来上传文件,为了方便,使用了第三方的插件uploadify(http://www.uploadify.com/),
这个插件展示效果很好,还提供了丰富的功能,在下面的内容中会简单介绍,有兴趣的朋友可以到官网
去看下文档,简单易用。
这里依然借助了SpringMVC的文件上传功能,不过十三哥建议还是不要这样做,这里纯粹是为了介绍
SpringMVC的文件上传而已。
还是希望能使用完整的前后端结合的文件上传插件,把文件上传的功能独立出来。这样页面上就只显示
一个已上传的文件在服务端的保存地址,这个地址对应于数据库表中的URL字段。这样显示文件列表的
时候,服务端也只是从表中取出一系列的URL,再交由读文件的插件去读文件,这将会是非常好的一个
设计了。
使用SpringMVC的文件上传功能,需要引入相应的jar包,配置文件解析器。
【添加处理文件上传的jar包】
pom.xml添加commons-io和commons-fileupload的依赖
<!-- 文件上传 begin--> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>commons-fileupload</groupId> <artifactId>commons-fileupload</artifactId> <version>1.3</version> </dependency> <!-- 文件上传 end-->
【springMVC-servlet.xml配置文件解析器】
<!-- SpringMVC上传文件时,处理文件的解析器,还可以配置文件的大小和异常处理--> <!-- 但是在后端配置文件的大小是不明智的,一般前端的上传文件插件中都提供了这个功能, 所以在前端设置会更好--> <bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver"/>
另外,大家也会发现,SpringMVC的Resolver(解析器)是个很关键的东西,需要什么样的处理,就引入
什么样的解析器就行了。
【Controller代码】
package com.xbs.ready.ssh.controller; import com.alibaba.fastjson.JSON; import java.io.BufferedOutputStream; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.util.HashMap; import java.util.Iterator; import java.util.Map; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.multipart.MultipartFile; import org.springframework.web.multipart.MultipartHttpServletRequest; /** * 文件上传的Controller * * @author ssg */ @Controller @RequestMapping("upload") public class FileUploadController { private static final String FILE_PATH = "C:/uploaddir"; @RequestMapping(value = "one", method = RequestMethod.POST) @ResponseBody public String uploadFile(HttpServletRequest request, HttpServletResponse response) throws IOException { //String fileName = (String)request.getAttribute("filename"); MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request; Iterator<String> fileNames = multipartRequest.getFileNames(); MultipartFile multipartFile = multipartRequest.getFile(fileNames.next()); //如果使用firebug,或者chrome的开发者工具,可以看到,这个文件上传工具发送了两个文件名 //分别是:name="Filedata"; filename="AVScanner.ini" //用这两个文件名获得文件内容都可以,只不过第一个没有后缀,需要自己处理 //第二个是原始的文件名,但是这个文件名有可能是上传文件时的全路径 //例如 C:/testssh/a.log,如果是全路径的话,也需要处理 String fileAlias = multipartFile.getName(); System.out.println("Spring MVC获得的文件名:" + fileAlias); //获得文件原始名称 String name = multipartFile.getOriginalFilename(); String filePath = FILE_PATH + "/" + name; saveFile(filePath, multipartFile.getBytes()); Map<String, String> resultMap = new HashMap<String, String>(5); resultMap.put("result", "success"); resultMap.put("filePath", filePath); return JSON.toJSONString(resultMap); } //保存文件的方法 public void saveFile(String filePath, byte[] content) throws IOException { BufferedOutputStream bos = null; try { File file = new File(filePath); //判断文件路径是否存在 if (!file.getParentFile().exists()) { //文件路径不存在时,创建保存文件所需要的路径 file.getParentFile().mkdirs(); } //创建文件(这是个空文件,用来写入上传过来的文件的内容) file.createNewFile(); bos = new BufferedOutputStream(new FileOutputStream(file)); bos.write(content); } catch (FileNotFoundException e) { throw new FileNotFoundException("文件不存在。"); } finally { if (null != bos) { bos.close(); } } } }
【HTML代码】
html文件路径:.../webapp/views/upload.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" type="text/css" href="http://localhost:8080/sshdemo/static/css/uploadify.css"> <script type="text/javascript" src="http://localhost:8080/sshdemo/static/js/jquery-1.7.2.min.js"></script> <script type="text/javascript" src="http://localhost:8080/sshdemo/static/js/jquery.uploadify.js"></script> <meta name="viewport" content="width=device-width"> <title>文件上传</title> <script type="text/javascript"> $(document).ready(function() { fileUpload(); }); function fileUpload() { $("#upload").uploadify({ "uploader": "http://localhost:8080/sshdemo/upload/one", "method": "post", "progressData": "percentage", "swf": "http://localhost:8080/sshdemo/static/flash/uploadify.swf", "buttonText": "选择要上传的文件", "multi": true, "fileSizeLimit": "100KB", "queueSizeLimit": 5, "successTimeout": 600, "onUploadSuccess": function(file, data, response) { alert('The file ' + file.name + ' was successfully uploaded with a response of ' + response + ':' + data); }, "onUploadError": function(file, errorCode, errorMsg, errorString) { alert('The file ' + file.name + ' could not be uploaded: ' + errorString); }, "onSelectError": function() { alert('The file ' + file.name + ' returned an error and was not added to the queue.'); } }); } </script> </head> <body> <form enctype="multipart/form-data"> <input id="upload" type="file" /> </form> </body> </html>
访问
访问路径:http://localhost:8080/sshdemo/views/upload.html
(或者通过访问Controller,然后跳转回这个页面,不过不建议这样做,尽量不去
打扰服务端)
uploadify介绍
这里只简要介绍上面使用的几个参数,其余的可以参照官方文档(http://www.uploadify.com/documentation/)
uploader:服务端处理上传文件的路径
"uploader": "http://localhost:8080/sshdemo/upload/one"
method:访问方式,post,get(这个访问方式要与服务的访问方式一致,否则405)
"method": "post"
progressData:上传进度,有percentage(百分比)和speed(进度条)两个值
"progressData": "percentage"
swf:动画文件的路径,因为要演示上传进度,所以需要动画(这个文件在官网的zip包里有,可以直接
使用)
"swf": "http://localhost:8080/sshdemo/static/flash/uploadify.swf"
buttonText:上传按钮的名字
"buttonText": "选择要上传的文件"
multi:是否可一次上传多个文件,true:可以,false:不可以(默认false)
"multi": true
fileSizeLimit:文件大小的限制(这里指单个文件),单位可以有B,KB,MB,和GB,默认是KB,
不过建议显式指定,方便理解;这个参数设置也可以代替在后台的配置文件中指定可上传文件的大小
"fileSizeLimit": "100KB"
queueSizeLimit:可上传文件的个数,如果不指定那么没有上限,建议指定的好
"queueSizeLimit": 5
successTimeout:上传文件后,多长时间服务端没有响应就意为上传成功,单位是秒(这时可能服务端
出错了,但是服务端处理的时间超过了这里设置的时间,那么插件会认为上传成功了)
"successTimeout": 60
onUploadSuccess:上传文件成功后,触发的事件
@Param file:上传成功的那个文件对象 @Param data:服务端返回的数据,这个例子中返回的是JSON数据 @Param response:服务端的响应,true 或者 false(注意:如果服务端在超过了 successTimeout之后返回了false,那么插件依然会返回true) "onUploadSuccess": function(file, data, response) { alert('The file ' + file.name + ' was successfully uploaded with a response of ' + response + ':' + data); }
onUploadError:上传文件失败后,触发的事件
@Param file:上传的文件对象 @Param errorCode:错误代码(这个代码是插件返回的,不是服务端) @Param errorMsg:错误信息(插件返回的错误信息) @Param errorString:详细的错误信息 "onUploadError": function(file, errorCode, errorMsg, errorString) { alert('The file ' + file.name + ' could not be uploaded: ' + errorString); }
onSelectError:选择上传文件出错时(例如 queueSizeLimit=5,但是选择了6个文件),可以触发这个
事件;文件上传失败时,也可以触发这个事件
@Param file:上传的文件对象 @Param errorCode:错误代码(QUEUE_LIMIT_EXCEEDED,FILE_EXCEEDS_SIZE_LIMIT, ZERO_BYTE_FILE,INVALID_FILETYPE) @Param errorMsg:错误信息 "onSelectError": function() { alert('The file ' + file.name + ' returned an error and was not added to the queue.'); }
这里就介绍这几个参数了,官网还有好多参数,触发事件,方法等,等以后用到了再介绍吧。
相关推荐
本示例是一个完整的SpringMVC文件上传的Demo,具有实用性,且经过测试有效。下面将详细介绍这个Demo的实现原理和关键知识点。 1. **文件上传组件** SpringMVC利用`CommonsMultipartResolver`来处理文件上传请求。...
以上就是关于SpringMVC文件上传所需jar包的相关知识,这两个jar文件是实现文件上传功能的关键组件。使用它们,开发者可以方便地处理用户的文件上传请求,确保数据的安全传输和存储。在实际项目中,还需要注意文件...
在这个“SpringMVC文件上传,多文件上传实例”中,我们将深入探讨如何在SpringMVC环境中实现文件上传功能,包括单个文件上传以及多个文件的批量上传。 1. **文件上传原理**: 文件上传是通过HTTP协议的POST请求来...
这个"SpringMVC文件上传Demo代码"是一个实例,演示了如何配置和使用SpringMVC来实现这一功能。 首先,我们需要在SpringMVC的配置文件(如`servlet-context.xml`)中启用多部分支持。这通常涉及到注册一个`...
springMvc 文件上传,springMvc 支持单文件和多文件上传,
com.springsource.org.apache.commons.fileupload-1.2.0.jar com.springsource.org.apache.commons.io-1.4.0.jar
本项目"springmvc文件上传练习项目"旨在提供一个实践平台,帮助开发者掌握如何使用Spring MVC处理Multipart类型的请求,实现文件和图片的上传。下面我们将深入探讨相关知识点。 1. **MultipartHttpServletRequest...
这个"SpringMVC文件上传案例"展示了如何在Eclipse开发环境中实现这一过程。下面我们将详细探讨涉及的知识点。 首先,我们需要理解SpringMVC的核心概念。SpringMVC是Spring框架的一部分,它是一个用于构建Web应用的...
### SpringMVC文件上传与进度条技术解析 #### 一、SpringMVC文件上传概述 在Web应用开发中,文件上传是一项常见的需求。SpringMVC框架内置了对文件上传的支持,这种支持主要依赖于`commons-fileupload`组件。`...
`SpringMVC文件上传multpathfileJar包commons-fileupload-1.3.3`和`commons-io-2.4.jar`是实现这一功能的关键依赖库。这两个库提供了处理HTTP请求中的多部分数据(包括文件上传)的功能。 1. **Spring MVC中的文件...
### Spring MVC 文件上传知识点 #### 一、Spring MVC 文件上传概述 在Web开发中,文件上传是一项常见的功能需求。Spring MVC 提供了便捷的方式来处理文件上传。本篇将基于一个简单的示例,来讲解如何使用Spring ...
本示例着重于SpringMVC中的文件上传和下载功能,这对于任何需要用户交互式交换文件的应用程序都是至关重要的。 文件上传是指允许用户从他们的设备选择文件并将其发送到服务器的过程。在SpringMVC中,这通常通过使用...
在这个场景下,"springmvc文件上传jar"通常指的是一个包含了处理文件上传所需依赖的压缩包。这个压缩包里面包含了两个重要的库:Commons-fileupload.jar和Commons-io.jar。这两个库是Apache Commons项目的一部分,为...
在这个"springMvc文件上传完整版"中,我们重点探讨Spring MVC如何处理文件上传,以及相关的前端技术如Ajax、pupload.js的使用。 一、Spring MVC 文件上传 1. **配置**:在Spring MVC中,我们需要配置`Multipart...
SpringMVC文件上传下载 @Controller @RequestMapping(value="/file") public class FileController { @Resource private User user; @RequestMapping(value="/toUpload") public String toUpload(){ return...
在Spring MVC框架中,文件上传是一项常见的功能,用于接收客户端发送的文件数据。Vue.js作为一个前端框架,可以很好地与Spring MVC结合,实现用户界面的交互和文件上传的处理。在这个项目中,我们将深入探讨如何使用...
下面是一个简单的SpringMVC文件上传示例: ```java @Controller public class UploadController { @PostMapping("/upload") public String handleFileUpload(@RequestParam("file") MultipartFile file) { if ...
"springMVC文件上传依赖包"就是针对这个需求提供的一组必备组件。在这个压缩包里,我们有两个重要的文件: 1. `com.springsource.org.apache.commons.io-1.4.0.jar`: 这是Apache Commons IO库的一个版本,它提供了...
在SpringMVC中,文件上传主要依赖于`CommonsMultipartResolver`,这是Spring提供的一个解析多部分请求的组件。在配置文件中,我们需要添加如下配置启用文件上传: ```xml <!-- 指定最大上传文件大小 --> ...
本文主要目的是记录自己基于SpringMVC实现的文件上传和下载的工具类的编写,代码经过测试可以直接运行在以后的项目中。开发的主要思路是对上传和下载文件进行抽象,把上传和下载的核心功能抽取出来分装成类。