<script type="text/javascript" src="${STATIC_FILE_PATH}/js/jPlug/uploadify/jquery.uploadify.min.js${STATIC_FILE_VERSION}"></script>: javascript
2:脚本内容: css
以下参数你还没搞懂的话 ,请查阅官方文档,地址:http://www.uploadify.com/documentation/ html
<script type="text/javascript">
$(document).ready(function(){
$(function() {
$('#file_upload').uploadify({
'swf' : '${STATIC_FILE_PATH}/js/jPlug/uploadify/uploadify.swf',
'uploader' : '${CONTEXT_PATH}/shop/upload.html',
'height': 25,
'whith' :120,
'auto' : false,
'fileDataName':'file',
'buttonText' : '选择图片...',
'fileTypeExts' : '*.gif; *.jpg; *.png',
'multi' : false,
'method' :'post',
'debug':true,
'onUploadStart' : function(file) {
var param = {};
param.picHref = $('#file_upload_href').val();
$("#file_upload").uploadify("settings", "formData", param);
},
'onUploadSuccess' : function(file, data, response) {
var imgUrl = uploadCommon.getPath(data);
$("#imgUrl").val(imgUrl);// 返回的图片路径保存起来
$("#thumbImg").attr("src", IMAGE_FILE_PATH + imgUrl);// 更新logo显示
/*uploadCommon.uploadImageBtnStyle("imgUrl");
uploadCommon.initPreviewAfterUpload(data); // 新图片预览*/
},
'onUploadError' : function(file, errorCode, errorMsg, errorString) {
alert('The file ' + file.name + ' could not be uploaded: ' + errorString);
}
});
});
});
</script>
java
2:<body>内容: jquery
<body >
<input id="file_upload" type="file" name="file"/>
<a href="javascript:$('#file_upload').uploadify('upload', '*')">上传文件</a> | <a href="javascript:$('#file_upload').uploadify('stop')">中止上传!</a>
</body> app
3:后台controller: dom
@RequestMapping(value = "/shop/upload",method=RequestMethod.POST)
@ResponseBody
public Object uploadHandlerForUploadify(String picHref,HttpServletRequest request)
throws Exception {
Integer userID = 0;
MultipartHttpServletRequest multipartRequest = (MultipartHttpServletRequest) request;
MultipartFile multipartFile = multipartRequest.getFile("Filedata");
/** 写文件前先读出图片原始高宽 **/
byte[] bytes = multipartFile.getBytes();
InputStream is = new ByteArrayInputStream(bytes);
int width = 0; // 原始图片宽
int height = 0; // 原始图片高
try {
BufferedImage bufimg = ImageIO.read(is);
// 只有图片才获取高宽
if (bufimg != null) {
width = bufimg.getWidth();
height = bufimg.getHeight();
}
is.close();
} catch (Exception e) {
e.printStackTrace();
loger.error(e.getMessage());
is.close();
throw new Exception("uploadify上传图片读取图片高宽时发生异常!");
}
/** 拼成完整的文件保存路径加文件 **/
String originalFilename = multipartFile.getOriginalFilename(); // 文件全名
String suffix = StringUtil.substringAfter(originalFilename, "."); // 后缀
// 文件名转码
// fileName = Base64.StringToBase64(fileName);
// fileName = StringUtil.join(fileName, suffix);
UploadFilePathVO uploadFile = UploadFilePathUtil.initFileUpload(userID, "test", suffix, width, height);
File file = new File(uploadFile.getRealPath());
multipartFile.transferTo(file); 工具
return uploadFile;
} post
4:自定义的上传路径工具类: spa
/**
* 获取图片上传路径(处理高宽)
*
* @return
*/
public static UploadFilePathVO initFileUpload(Integer userID, String imageType, String suffix, int width, int height) {
String randomKey = RandomUtil.getRandomString(6);
Date date = new Date();
String dateStr = new SimpleDateFormat("yyyyMMdd").format(date);
String timeStr = new SimpleDateFormat("HHmmssSSS").format(date);
int hashcode = Math.abs(userID.hashCode() % 256);
String relativePath = StringUtil.join(imageType, "/", hashcode, "/", userID, "/", dateStr, "/");
String realPath = StringUtil.join(Constants.UPLOAD_REALPATH, "/", relativePath);
File logoSaveFile = new File(realPath);
if (!logoSaveFile.exists()) {
logoSaveFile.mkdirs();
}
// 图片文件名: 时间戳 + 随机串 + 高宽
String fileName = StringUtil.join(timeStr, randomKey, '_', height, '_', width, '.', suffix);
UploadFilePathVO uploadFile = new UploadFilePathVO();
uploadFile.setRelativePath(StringUtil.join(relativePath, fileName));
uploadFile.setRealPath(StringUtil.join(realPath, fileName));
return uploadFile;
}
5:UploadFilePathVO类:
public String realPath; public String relativePath; private int imgHeight; // 上传图片的高 private int imgWidth; // 宽