1.前端利用ajaxfileupload.js插件实现,原生插件默认不支持多个文件上传,需要修改插件源代码来支持
插件js代码如下
修改的源代码为将createUploadForm函数内
//单个文件上传
var oldElement = jQuery('#' + fileElementId); //得到页面中的<input type='file' />对象
var newElement = jQuery(oldElement).clone(); //克隆页面中的<input type='file' />对象
jQuery(oldElement).attr('id', fileId); //修改原对象的id
jQuery(oldElement).before(newElement); //在原对象前插入克隆对象
jQuery(oldElement).appendTo(form); //把原对象插入到动态form的结尾处
替换为如下:
//修改源码:支持ajax批量上传文件
for(var i in fileElementId){
var oldElement = jQuery('#' + fileElementId[i]);
var newElement = jQuery(oldElement).clone();
jQuery(oldElement).attr('id', fileId);
jQuery(oldElement).before(newElement);
jQuery(oldElement).appendTo(form);
}
以下为修改之后的ajaxfileupload.js的源代码
jQuery.extend({
createUploadIframe: function (id, uri) {//id为当前系统时间字符串,uri是外部传入的json对象的一个参数
//create frame
var frameId = 'jUploadFrame' + id; //给iframe添加一个独一无二的id
var iframeHtml = '<iframe id="' + frameId + '" name="' + frameId + '" style="position:absolute; top:-9999px; left:-9999px"'; //创建iframe元素
if (window.ActiveXObject) {//判断浏览器是否支持ActiveX控件
if (typeof uri == 'boolean') {
iframeHtml += ' src="' + 'javascript:false' + '"';
}
else if (typeof uri == 'string') {
iframeHtml += ' src="' + uri + '"';
}
}
iframeHtml += ' />';
jQuery(iframeHtml).appendTo(document.body); //将动态iframe追加到body中
return jQuery('#' + frameId).get(0); //返回iframe对象
},
createUploadForm: function (id, fileElementId, data) {//id为当前系统时间字符串,fileElementId为页面<input type='file' />的id,data的值需要根据传入json的键来决定
//create form
var formId = 'jUploadForm' + id; //给form添加一个独一无二的id
var fileId = 'jUploadFile' + id; //给<input type='file' />添加一个独一无二的id
var form = jQuery('<form action="" method="POST" name="' + formId + '" id="' + formId + '" enctype="multipart/form-data" ></form>'); //创建form元素
if (data) {//通常为false
for (var i in data) {
jQuery('<input type="hidden" name="' + i + '" value="' + data[i] + '" />').appendTo(form); //根据data的内容,创建隐藏域,这部分我还不知道是什么时候用到。估计是传入json的时候,如果默认传一些参数的话要用到。
}
}
//修改源码:支持ajax批量上传文件
for(var i in fileElementId){
var oldElement = jQuery('#' + fileElementId[i]);
var newElement = jQuery(oldElement).clone();
jQuery(oldElement).attr('id', fileId);
jQuery(oldElement).before(newElement);
jQuery(oldElement).appendTo(form);
}
//单个文件上传
// var oldElement = jQuery('#' + fileElementId); //得到页面中的<input type='file' />对象
// var newElement = jQuery(oldElement).clone(); //克隆页面中的<input type='file' />对象
// jQuery(oldElement).attr('id', fileId); //修改原对象的id
// jQuery(oldElement).before(newElement); //在原对象前插入克隆对象
// jQuery(oldElement).appendTo(form); //把原对象插入到动态form的结尾处
//set attributes
jQuery(form).css('position', 'absolute'); //给动态form添加样式,使其浮动起来,
jQuery(form).css('top', '-1200px');
jQuery(form).css('left', '-1200px');
jQuery(form).appendTo('body'); //把动态form插入到body中
return form;
},
ajaxFileUpload: function (s) {//这里s是个json对象,传入一些ajax的参数
// TODO introduce global settings, allowing the client to modify them for all requests, not only timeout
s = jQuery.extend({}, jQuery.ajaxSettings, s); //此时的s对象是由jQuery.ajaxSettings和原s对象扩展后的对象
var id = new Date().getTime(); //取当前系统时间,目的是得到一个独一无二的数字
var form = jQuery.createUploadForm(id, s.fileElementId, (typeof (s.data) == 'undefined' ? false : s.data)); //创建动态form
var io = jQuery.createUploadIframe(id, s.secureuri); //创建动态iframe
var frameId = 'jUploadFrame' + id; //动态iframe的id
var formId = 'jUploadForm' + id; //动态form的id
// Watch for a new set of requests
if (s.global && !jQuery.active++) {//当jQuery开始一个ajax请求时发生
jQuery.event.trigger("ajaxStart"); //触发ajaxStart方法
}
var requestDone = false; //请求完成标志
// Create the request object
var xml = {};
if (s.global)
jQuery.event.trigger("ajaxSend", [xml, s]); //触发ajaxSend方法
// Wait for a response to come back
var uploadCallback = function (isTimeout) {//回调函数
var io = document.getElementById(frameId); //得到iframe对象
try {
if (io.contentWindow) {//动态iframe所在窗口对象是否存在
xml.responseText = io.contentWindow.document.body ? io.contentWindow.document.body.innerHTML : null;
xml.responseXML = io.contentWindow.document.XMLDocument ? io.contentWindow.document.XMLDocument : io.contentWindow.document;
} else if (io.contentDocument) {//动态iframe的文档对象是否存在
xml.responseText = io.contentDocument.document.body ? io.contentDocument.document.body.innerHTML : null;
xml.responseXML = io.contentDocument.document.XMLDocument ? io.contentDocument.document.XMLDocument : io.contentDocument.document;
}
} catch (e) {
jQuery.handleError(s, xml, null, e);
}
if (xml || isTimeout == "timeout") {//xml变量被赋值或者isTimeout == "timeout"都表示请求发出,并且有响应
requestDone = true; //请求完成
var status;
try {
status = isTimeout != "timeout" ? "success" : "error"; //如果不是“超时”,表示请求成功
// Make sure that the request was successful or notmodified
if (status != "error") {
// process the data (runs the xml through httpData regardless of callback)
var data = jQuery.uploadHttpData(xml, s.dataType); //根据传送的type类型,返回json对象,此时返回的data就是后台操作后的返回结果
// If a local callback was specified, fire it and pass it the data
if (s.success)
s.success(data, status); //执行上传成功的操作
// Fire the global callback
if (s.global)
jQuery.event.trigger("ajaxSuccess", [xml, s]);
} else
jQuery.handleError(s, xml, status);
} catch (e) {
status = "error";
jQuery.handleError(s, xml, status, e);
}
// The request was completed
if (s.global)
jQuery.event.trigger("ajaxComplete", [xml, s]);
// Handle the global AJAX counter
if (s.global && ! --jQuery.active)
jQuery.event.trigger("ajaxStop");
// Process result
if (s.complete)
s.complete(xml, status);
jQuery(io).unbind();//移除iframe的事件处理程序
setTimeout(function () {//设置超时时间
try {
jQuery(io).remove();//移除动态iframe
jQuery(form).remove();//移除动态form
} catch (e) {
jQuery.handleError(s, xml, null, e);
}
}, 100)
xml = null
}
}
// Timeout checker
if (s.timeout > 0) {//超时检测
setTimeout(function () {
// Check to see if the request is still happening
if (!requestDone) uploadCallback("timeout");//如果请求仍未完成,就发送超时信号
}, s.timeout);
}
try {
var form = jQuery('#' + formId);
jQuery(form).attr('action', s.url);//传入的ajax页面导向url
jQuery(form).attr('method', 'POST');//设置提交表单方式
jQuery(form).attr('target', frameId);//返回的目标iframe,就是创建的动态iframe
if (form.encoding) {//选择编码方式
jQuery(form).attr('encoding', 'multipart/form-data');
}
else {
jQuery(form).attr('enctype', 'multipart/form-data');
}
jQuery(form).submit();//提交form表单
} catch (e) {
jQuery.handleError(s, xml, null, e);
}
jQuery('#' + frameId).load(uploadCallback); //ajax 请求从服务器加载数据,同时传入回调函数
return { abort: function () { } };
},
handleError: function( s, xhr, status, e ) {
// If a local callback was specified, fire it
if ( s.error ) {
s.error.call( s.context || s, xhr, status, e );
}
// Fire the global callback
if ( s.global ) {
(s.context ? jQuery(s.context) : jQuery.event).trigger( "ajaxError", [xhr, s, e] );
}
},
uploadHttpData: function (r, type) {
var data = !type;
data = type == "xml" || data ? r.responseXML : r.responseText;
// If the type is "script", eval it in global context
if (type == "script")
jQuery.globalEval(data);
// Get the JavaScript object, if JSON is used.
if ( type == "json" )
//data = data.replace("<pre>","").replace("</pre>","");
data = jQuery.parseJSON(jQuery(data).text());
//data = eval("("+data.replace("<pre>","").replace("</pre>","")+")");
// evaluate scripts within html
if (type == "html")
jQuery("<div>").html(data).evalScripts();
return data;
}
})
2.文件上传jsp文件,可支持多个文件上传,在这里对上传的文件类型进行过滤,只支持图片类型的文件
代码为:
<%@ page language="java" pageEncoding="utf-8" %>
<%@include file="/WEB-INF/pages/common/taglibs.jsp"%>
<html>
<head>
<title>上传人脸照片</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="${path}/js/ajaxfileupload.js" ></script>
<style type="text/css"> input { border:1px solid; outline:none; line-height:normal; *overflow:visible } .inpo{ margin-top: 20px; } .divBig{ height: 40px; text-align: center; margin-top:5%; margin-bottom: 5%; } </style>
<script type="text/javascript"> function checkFaceInfo(){ var userName = $("#userName").val(); if(null !=userName && userName!=''){ var fileNames = new Array();//存放文件后缀名 var ids = new Array();//存放文件id $("#ta").find("input[name='file']").each(function (index){ var id = $(this).attr("id"); var excelName = $(this).val(); fileNames.push(excelName); ids.push(id); }) var flag = false; for(var i=0;i<fileNames.length;i++){ //文件格式校验 var fileTArr=fileNames[i].split("."); var filetype=fileTArr[fileTArr.length-1]; if(filetype!=null && filetype!=""){ if(filetype == "jpg" || filetype == "png" || filetype == "jpeg" || filetype == "gif"){ flag=true; }else{ $.messager.alert('提示',"请上传正确的图片文件,仅支持后缀为'jpg'、'png'、'jpeg'、'gif'的图片文件!",'info'); break; } }else{ $.messager.alert('提示',"请上传(后缀为'jpg'、'png'、'jpeg'、'gif')图片文件!",'info'); break; } } if(flag){ $.ajaxFileUpload({ url: $.contextPath + "/faceInfoOp_batchUploadFile", type: 'post', secureuri: false, data:{ 'userName':userName }, fileElementId: ids, dataType: 'json', success: function(rel, status){ if(rel.result=='success'){ $uidialog.dialog('close'); getFaceList(''); $.messager.show({ title:'提示', msg:'上传人脸照片成功!', timeout:3000, showType:'slide' }); }else if(rel.result=='noUser'){ $.messager.alert('提示',"该用户未找到!",'error'); }else if(rel.result=='noFile'){ $.messager.alert('提示',"上传文件格式有误!",'error'); }else{ $.messager.alert('提示',"上传过程发生错误!",'error'); } }, error: function(data, status, e){ $.messager.alert('提示', '与服务器通讯失败,请稍后再试!', 'error'); } }); } }else{ $.messager.alert('提示',"请输入用户名 !",'info'); } } var add_count=2; function addface(){ var table = $("#ta"); var tr=$("<tr id='tr"+add_count+"'></tr>"); var td1=$("<td width='30%' style='text-align:left;' bgcolor='#fafcfd'><span style='color: red;' >*</span>人脸照片:</td> "); var td2=$("<td width='50%'><input type='file' name='file' id='file"+add_count+"' value='' style='width:160px;height:22px;'/></td>"); var td3=$("<td width='20%'><button id='btn_upload' onclick='delFace("+add_count+")' class='btn btn-warning' type='button' style='margin:auto 0;'>删除</button></td>"); tr.append(td1); tr.append(td2); tr.append(td3); table.append(tr); add_count++; add_time++; } function delFace(id){ $("#tr"+id+"").remove(); add_count--; } </script>
</head>
<body>
<div style="margin-top: 10px;">
<table id="ta" width="95%" class="list" border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td width="30%" style="text-align:left;" bgcolor="#fafcfd"><span style="color: red;" >*</span>用户名:</td>
<td width="50%"><input type="text" name="userName" id="userName" value="" style="width:160px;height:22px;" /></td>
<td width="20%"></td>
</tr>
<tr>
<td width="30%" style="text-align:left;" bgcolor="#fafcfd"><span style="color: red;" >*</span>人脸照片:</td>
<td width="50%" ><input type="file" name="file" id="file1" value="" style="width:160px;height:22px;" /></td>
<td width="20%" ><button id="btn_upload" onclick="addface();" class="btn btn-warning" type="button" style="margin:auto 0;">添加</button></td>
</tr>
</table>
</div>
<div class="divBig">
<button id="btn_upload" onclick="checkFaceInfo();" class="btn btn-warning" type="button" style="margin:auto 0;">确认</button>
</div>
</body>
</html>
3.后台部分利用struct2框架实现
后台Action部分
private File[] file;//上传的文件
private String[] fileFileName;//上传的文件名
private String[] fileFileContentType;//上传的文件类型
private String userName;//用户名
public File[] getFile() {
return file;
}
public void setFile(File[] file) {
this.file = file;
}
public String[] getFileFileName() {
return fileFileName;
}
public void setFileFileName(String[] fileFileName) {
this.fileFileName = fileFileName;
}
public String[] getFileFileContentType() {
return fileFileContentType;
}
public void setFileFileContentType(String[] fileFileContentType) {
this.fileFileContentType = fileFileContentType;
}
public String getUserName() {
return userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
/** * 批量上传人脸照片 *@author LH *@data 2018年4月26日 * @return */
public String batchUploadFile(){
log.loger.info("batchUploadFile start!");
jsonMap = new JSONObject();
jsonMap = faceInfoManager.batchUploadFile(userName,file,fileFileName);
log.loger.info("json="+jsonMap);
return SUCCESS;
}
//调用service层
@Override
public JSONObject batchUploadFile(String userName , File[] files, String[] fileFileNames) {
JSONObject jsonObject = new JSONObject();
try {
User userinfo = userManager.findByAccount(userName);
if(null !=userinfo){
String trainPath = Util.getValueFromConf(BaseConstant.TRAING_DIR,BaseConstant.FACE_CFG);
if(null !=files && files.length>0){
int count = files.length;
int s=0;
for(int i=0;i<files.length;i++){
if(null !=files[i] && files[i].isFile()){
int maxNum = faceInfoDao.getMaxNum();
int num=BaseConstant.FACE_NUM;
if(maxNum!=0){
num=maxNum+1;
}
//人脸图片命名:编号+"_"+用户名+"_"+8位随机数
StringBuffer imageName = new StringBuffer();
String randomNum = RandomUtil.randomString(8);
imageName.append(num).append("_").append(userinfo.getUsername()).append("_").append(randomNum);
String serverFileName = imageName.toString() + FileUtil.getExtention((fileFileNames[i]));
//人脸图片保存路径
String imagePath=trainPath + serverFileName;
// log.loger.info("imagePath="+imagePath);
File uploadFile = new File(imagePath);
//转存到服务器
boolean result = FileUtil.storeFile(files[i], uploadFile);
if(result){
log.loger.info("upload face image to server success!");
//保存一条人脸上传记录
FaceInfo faceInfo = new FaceInfo();
faceInfo.setUsername(userName);//保存用户名
faceInfo.setFaceNumber(num);//保存人脸图片编号
faceInfo.setFacePath(imagePath);//保存人脸图片路径
faceInfo.setCreateTime(new Date());//创建时间
faceInfo.setLastUpdateTime(new Date());//修改时间
boolean rel = faceInfoDao.saveFaceInfo(faceInfo);
if(rel){
s++;
}
}else{
log.loger.info("uplod face image to server error,image name is="+fileFileNames[i]);
}
}else{
log.loger.info("file is not find");
}
}
if(count==s){
jsonObject.put("result", "success");
}else{
jsonObject.put("result", "fail");
}
}else{
jsonObject.put("result", "noFile");
}
}else{
jsonObject.put("result", "noUser");
}
} catch (Exception e) {
e.printStackTrace();
log.loger.error("uploadFaceImage happen exception!"+e);
jsonObject.put("result", "exception");
}
return jsonObject;
}
需要注意的是要测试中发现多个文件上传时会报临时文件找不到进过查找资源发现需要在struts.xml配置文件中添加一项配置项,用于暂时存放上传的文件
在struct2.xml添加的配置如下:
<constant name="struts.multipart.saveDir" value="/tmp"/>