SpringMVC结合ajaxfileupload.js实现文件无刷新上传
程序员文章站
2024-03-12 21:50:26
直接看代码吧,注释都在里面
首先是web.xml
直接看代码吧,注释都在里面
首先是web.xml
<?xml version="1.0" encoding="utf-8"?> <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xsi:schemalocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> <servlet> <description>配置springmvc的前端控制器</description> <servlet-name>upload</servlet-name> <servlet-class>org.springframework.web.servlet.dispatcherservlet</servlet-class> <init-param> <param-name>contextconfiglocation</param-name> <param-value>classpath:applicationcontext.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>upload</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> <filter> <description>解决参数传递过程中的乱码问题</description> <filter-name>characterencodingutf8</filter-name> <filter-class>org.springframework.web.filter.characterencodingfilter</filter-class> <init-param> <param-name>encoding</param-name> <param-value>utf-8</param-value> </init-param> </filter> <filter-mapping> <filter-name>characterencodingutf8</filter-name> <url-pattern>/*</url-pattern> </filter-mapping> </web-app>
下面是位于//src//applicationcontext.xml
<?xml version="1.0" encoding="utf-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context" xsi:schemalocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd"> <!-- 启动spring的组件自动扫描机制(spring会自动扫描base-package指定的包中的类和子包里面类) --> <!-- 此处可参考我的文章http://blog.csdn.net/jadyer/article/details/6038604 --> <context:component-scan base-package="com.jadyer"/> <!-- 启动springmvc的注解功能,它会自动注册handlermapping、handleradapter、exceptionresolver的相关实例 --> <mvc:annotation-driven/> <!-- 由于web.xml中设置springmvc拦截所有请求,所以在读取静态资源文件时就会读不到 --> <!-- 通过此配置即可指定所有请求或引用"/js/**"的资源,都会从"/js/"中查找 --> <mvc:resources mapping="/js/**" location="/js/"/> <mvc:resources mapping="/upload/**" location="/upload/"/> <!-- springmvc上传文件时,需配置multipartresolver处理器 --> <bean id="multipartresolver" class="org.springframework.web.multipart.commons.commonsmultipartresolver"> <!-- 指定所上传文件的总大小不能超过800kb......注意maxuploadsize属性的限制不是针对单个文件,而是所有文件的容量之和 --> <property name="maxuploadsize" value="800000"/> </bean> <!-- springmvc在超出上传文件限制时,会抛出org.springframework.web.multipart.maxuploadsizeexceededexception --> <!-- 该异常是springmvc在检查上传的文件信息时抛出来的,而且此时还没有进入到controller方法中 --> <bean id="exceptionresolver" class="org.springframework.web.servlet.handler.simplemappingexceptionresolver"> <property name="exceptionmappings"> <props> <!-- 遇到maxuploadsizeexceededexception异常时,自动跳转到/web-inf/jsp/error_fileupload.jsp页面 --> <prop key="org.springframework.web.multipart.maxuploadsizeexceededexception">error_fileupload</prop> </props> </property> </bean> <bean class="org.springframework.web.servlet.view.internalresourceviewresolver"> <property name="prefix" value="/web-inf/jsp/"/> <property name="suffix" value=".jsp"/> </bean> </beans>
下面是上传文件内容过大时的提示页面//web-inf//jsp//error_fileupload.jsp
<%@ page language="java" pageencoding="utf-8"%>
<h1>文件过大,请重新选择</h1>
下面是用于选择文件的上传页面index.jsp
<%@ page language="java" pageencoding="utf-8"%> <!-- 此处不能简写为<script type="text/javascript" src=".."/> --> <script type="text/javascript" src="<%=request.getcontextpath()%>/js/jquery-1.10.2.min.js"></script> <script type="text/javascript" src="<%=request.getcontextpath()%>/js/ajaxfileupload.js"></script> <script type="text/javascript"> function ajaxfileupload(){ //开始上传文件时显示一个图片,文件上传完成将图片隐藏 //$("#loading").ajaxstart(function(){$(this).show();}).ajaxcomplete(function(){$(this).hide();}); //执行上传文件操作的函数 $.ajaxfileupload({ //处理文件上传操作的服务器端地址(可以传参数,已亲测可用) url:'${pagecontext.request.contextpath}/test/fileupload?uname=玄玉', secureuri:false, //是否启用安全提交,默认为false fileelementid:'myblogimage', //文件选择框的id属性 datatype:'text', //服务器返回的格式,可以是json或xml等 success:function(data, status){ //服务器响应成功时的处理函数 data = data.replace("<pre>", ''); //ajaxfileupload会对服务器响应回来的text内容加上<pre>text</pre>前后缀 data = data.replace("</pre>", ''); data = data.replace("<pre>", ''); data = data.replace("</pre>", ''); //本例中设定上传文件完毕后,服务端会返回给前台[0`filepath] if(data.substring(0, 1) == 0){ //0表示上传成功(后跟上传后的文件路径),1表示失败(后跟失败描述) $("img[id='uploadimage']").attr("src", data.substring(2)); $('#result').html("图片上传成功<br/>"); }else{ $('#result').html('图片上传失败,请重试!!'); } }, error:function(data, status, e){ //服务器响应失败时的处理函数 $('#result').html('图片上传失败,请重试!!'); } }); } </script> <div id="result"></div> <img id="uploadimage" src="http://www.firefox.com.cn/favicon.ico"> <input type="file" id="myblogimage" name="myfiles"/> <input type="button" value="上传图片" onclick="ajaxfileupload()"/> <!-- ajaxfileupload简介 官网:http://phpletter.com/our-projects/ajaxfileupload/ 简介:jquery插件ajaxfileupload能够实现无刷新上传文件,并且简单易用,它的使用人数很多,非常值得推荐 注意:引入js的顺序(它依赖于jquery)和页面中并无表单(只是在按钮点击的时候触发ajaxfileupload()方法) 常见错误及解决方案如下 1)syntaxerror: missing ; before statement --检查url路径是否可以访问 2)syntaxerror: syntax error --检查处理提交操作的jsp文件是否存在语法错误 3)syntaxerror: invalid property id --检查属性id是否存在 4)syntaxerror: missing } in xml expression --检查文件域名称是否一致或不存在 5)其它自定义错误 --可使用变量$error直接打印的方法检查各参数是否正确,比起上面这些无效的错误提示还是方便很多 -->
最后是处理文件上传的fileuploadcontroller.java
package com.jadyer.controller; import java.io.file; import java.io.ioexception; import java.io.printwriter; import javax.servlet.http.httpservletrequest; import javax.servlet.http.httpservletresponse; import org.apache.commons.io.fileutils; import org.springframework.stereotype.controller; import org.springframework.web.bind.annotation.requestmapping; import org.springframework.web.bind.annotation.requestparam; import org.springframework.web.multipart.multipartfile; /** * springmvc中的文件上传 * 1)由于springmvc使用的是commons-fileupload实现,所以先要将其组件引入项目中 * 2)在springmvc配置文件中配置multipartresolver处理器(可在此加入对上传文件的属性限制) * 3)在controller的方法中添加multipartfile参数(该参数用于接收表单中file组件的内容) * 4)编写前台表单(注意enctype="multipart/form-data"以及<input type="file" name="****"/>) * ps:由于这里使用了ajaxfileupload.js实现无刷新上传,故本例中未使用表单 * --------------------------------------------------------------------------------------------- * 这里用到了如下的jar * commons-io-2.4.jar * commons-fileupload-1.3.jar * commons-logging-1.1.2.jar * spring-aop-3.2.4.release.jar * spring-beans-3.2.4.release.jar * spring-context-3.2.4.release.jar * spring-core-3.2.4.release.jar * spring-expression-3.2.4.release.jar * spring-jdbc-3.2.4.release.jar * spring-oxm-3.2.4.release.jar * spring-tx-3.2.4.release.jar * spring-web-3.2.4.release.jar * spring-webmvc-3.2.4.release.jar * --------------------------------------------------------------------------------------------- * @create sep 14, 2013 5:06:09 pm * @author 玄玉<http://blog.csdn.net/jadyer> */ @controller @requestmapping("/test") public class fileuploadcontroller { /** * 这里这里用的是multipartfile[] myfiles参数,所以前台就要用<input type="file" name="myfiles"/> * 上传文件完毕后返回给前台[0`filepath],0表示上传成功(后跟上传后的文件路径),1表示失败(后跟失败描述) */ @requestmapping(value="/fileupload") public string adduser(@requestparam("uname") string uname, @requestparam multipartfile[] myfiles, httpservletrequest request, httpservletresponse response) throws ioexception{ //可以在上传文件的同时接收其它参数 system.out.println("收到用户[" + uname + "]的文件上传请求"); //如果用的是tomcat服务器,则文件会上传到\\%tomcat_home%\\webapps\\yourwebproject\\upload\\文件夹中 //这里实现文件上传操作用的是commons.io.fileutils类,它会自动判断/upload是否存在,不存在会自动创建 string realpath = request.getsession().getservletcontext().getrealpath("/upload"); //设置响应给前台内容的数据格式 response.setcontenttype("text/plain; charset=utf-8"); //设置响应给前台内容的printwriter对象 printwriter out = response.getwriter(); //上传文件的原名(即上传前的文件名字) string originalfilename = null; //如果只是上传一个文件,则只需要multipartfile类型接收文件即可,而且无需显式指定@requestparam注解 //如果想上传多个文件,那么这里就要用multipartfile[]类型来接收文件,并且要指定@requestparam注解 //上传多个文件时,前台表单中的所有<input type="file"/>的name都应该是myfiles,否则参数里的myfiles无法获取到所有上传的文件 for(multipartfile myfile : myfiles){ if(myfile.isempty()){ out.print("1`请选择文件后上传"); out.flush(); return null; }else{ originalfilename = myfile.getoriginalfilename(); system.out.println("文件原名: " + originalfilename); system.out.println("文件名称: " + myfile.getname()); system.out.println("文件长度: " + myfile.getsize()); system.out.println("文件类型: " + myfile.getcontenttype()); system.out.println("========================================"); try { //这里不必处理io流关闭的问题,因为fileutils.copyinputstreamtofile()方法内部会自动把用到的io流关掉 //此处也可以使用spring提供的multipartfile.transferto(file dest)方法实现文件的上传 fileutils.copyinputstreamtofile(myfile.getinputstream(), new file(realpath, originalfilename)); } catch (ioexception e) { system.out.println("文件[" + originalfilename + "]上传失败,堆栈轨迹如下"); e.printstacktrace(); out.print("1`文件上传失败,请重试!!"); out.flush(); return null; } } } //此时在windows下输出的是[d:\develop\apache-tomcat-6.0.36\webapps\ajaxfileupload\\upload\愤怒的小鸟.jpg] //system.out.println(realpath + "\\" + originalfilename); //此时在windows下输出的是[/ajaxfileupload/upload/愤怒的小鸟.jpg] //system.out.println(request.getcontextpath() + "/upload/" + originalfilename); //不推荐返回[realpath + "\\" + originalfilename]的值 //因为在windows下<img src="file:///d:/aa.jpg">能被firefox显示,而<img src="d:/aa.jpg">firefox是不认的 out.print("0`" + request.getcontextpath() + "/upload/" + originalfilename); out.flush(); return null; } }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: Java实现一个小说采集程序的简单实例
推荐阅读
-
SpringMVC结合ajaxfileupload.js实现文件无刷新上传
-
MyBatis与SpringMVC相结合实现文件上传、下载功能
-
SpringMVC结合ajaxfileupload.js实现文件无刷新上传
-
Asp.Net 无刷新文件上传并显示进度条的实现方法及思路
-
SpringMVC结合ajaxfileupload实现文件无刷新上传代码
-
Asp.Net 无刷新文件上传并显示进度条的实现方法及思路
-
SpringMVC结合ajaxfileupload实现文件无刷新上传代码
-
无刷新效果的jsp文件上传的实现 博客分类: JavaWeb JSP
-
asp.net中MVC借助Iframe实现无刷新上传文件实例
-
asp.net实现文件无刷新上传方法汇总