BootStrap-fileinput异步上传文件完整实例分享
这段时间有个项目前端需要用到图片上传的功能,在找了很久之后终于找到了bootstrap的开源插件bootstrap-fileinput,这款开源插件也很好适配了我项目中用到的bootstrap框架,所以就开始了跳坑和填坑的道路。由于本人还是个菜鸟,所以在这个插件中摸索了比较久,写这个博客一是想给不会用的同学分享一下我自己摸索出来的方法,二是记录下bootstrap-fileinput前端和后端的用法,防止以后忘记也有资料可以查。
插件及jar包下载
bootstrap-fileinput插件下载
依赖的jar包有:
commons-fileupload-1.2.jar
commons-io-2.6.jar
gson-2.3.1.jar
除了这些包之外我还用到struts2框架,需要的同学自行下载,这里就不一一列出来了
引入插件文件
导入css文件:
导入js文件(为了中文化需要导入zh.js,如果没有导入这个包文件上传框会是英文的。需要注意的是zh.js必须要 在fileinput.js的后面,否则无法中文化):
<script type="text/javascript" src="js/fileinput.js"></script> <script type="text/javascript" src="js/zh.js"></script>
前端代码
html代码
html需要的东西很简单一个带id、带name、type为file的input就可以:
js代码,js代码里面包括了文件上传的回调函数和配置等:
$("#img").fileinput({ language : 'zh',//设置文中文 uploadurl : "uploadimg",//图片上传的url,我这里对应的是后台struts配置好的的action方法 showcaption : true,//显示标题 showremove : true, //显示移除按钮 uploadasync : true,//默认异步上传 showpreview : true,//是否显示预览 textencoding : "utf-8",//文本编码 autoreplaceboolean : false,//选择图片时不清空原图片 }); $("#img").on('fileuploaded', function(event, data, previewid, index) {//异步上传成功结果处理 var img= json.parse(data.response);//接收后台传过来的json数据 alert(img.imgurl); }); $("#img").on('fileerror', function(event, data, msg) {//异步上传失败结果处理 alert("uploaderror"); });
java代码:
action方法:
package com.minxuan.mitesofor.action; import java.io.file; import java.io.ioexception; import java.io.printwriter; import java.util.arraylist; import javax.servlet.http.httpservletrequest; import javax.servlet.http.httpservletresponse; import org.apache.struts2.servletactioncontext; import com.google.gson.gson; import com.minxuan.mitesofor.domian.servicemando; import com.minxuan.mitesofor.service.servicemanservice; import com.minxuan.mitesofor.serviceimpl.servicemanserviceimpl; import com.minxuan.mitesofor.util.uploadutil; /** * @author xionglinyong * @see 文件上传action */ public class uploadaction { private file img; private string imgfilename; public file getimg() { return img; } public void setimg(file img) { this.img = img; } public string getimgfilename() { return imgfilename; } public void setimgfilename(string imgfilename) { this.imgfilename = imgfilename; } public void uploadimg() { // 调用文件上传工具类中的文件上传方法,img和前端input的name相对应 string imgpath = uploadutil.uploadimg(getimg(), getimgfilename()); httpservletresponse response = servletactioncontext.getresponse(); printwriter out = null; string jsonstring = "{\"imgurl\":\"" + imgpath + "\"}";//定义json字符串 gson json = new gson();//定义json对象 try { out = response.getwriter(); out.print(json.tojson(jsonstring));//将json字符串转换为json对象,并向前端输出 out.flush(); out.close(); } catch (ioexception e) { // todo auto-generated catch block e.printstacktrace(); } } }
文件上传工具类:
package com.minxuan.mitesofor.util; import java.io.file; import java.io.fileinputstream; import java.io.filenotfoundexception; import java.io.fileoutputstream; import java.io.ioexception; import java.util.uuid; import javax.servlet.http.httpservletrequest; import org.apache.struts2.servletactioncontext; public class uploadutil { public static string uploadimg(file img,string imgfilename) { string folderpath=""; string imgurl = "";//返回的图片地址 httpservletrequest request = servletactioncontext.getrequest();//获取request对象 stringbuffer url1 = request.getrequesturl();//获取当前页面的url string tempcontexturl1 = url1.delete(url1.length() - request.getrequesturi().length(), url1.length()) .append("/").tostring();//当前页面的url减去当前页面的地址为http头 string p = request.getrealpath("/img/upload");//得到站点的绝对地址 string path; string filename = uuid.randomuuid().tostring() + imgfilename.substring(imgfilename.lastindexof("."));//生成随机图片名称 int length; path = p + "\\" + filename;//图片地址全 try { fileoutputstream fos = new fileoutputstream(path); fileinputstream fis = new fileinputstream(img); byte[] buffer = new byte[1024 * 1024 * 20]; while ((length = fis.read(buffer)) > 0) { fos.write(buffer, 0, length); } fos.close(); fis.close(); imgurl = tempcontexturl1 + request.getcontextpath() + "/img/upload/" + filename; } catch (filenotfoundexception e) { // todo 自动生成的 catch 块 e.printstacktrace(); } catch (ioexception e) { // todo 自动生成的 catch 块 e.printstacktrace(); } return imgurl; // 返回url地址 } }
完整的相关代码就已经写好了,需要注意的是:
bootstrap fileinput返回数据类型只接收json对象,其他格式的数据会报错,文件能够上传,只是显示的信息不太友好
后台传入请前台的json字符串中一定要严格按照"{\"imgurl\":\"imgpath\"}"的格式,否则方法json.parse(data.response)无法将data中的json字符串解析为json对象(有人想问了,能否直接data.imgurl呢,当然是不行的,我已经 试了好几遍了。当然能够用其他方式获取数据的大神可以评论说说你是怎么获取后台返回的图片链接的)
最后声明一下,作者菜鸟,有写的不到位的地方请大佬们指出