Uploadify는 JQuery용 업로드 플러그인으로 매우 좋은 결과를 얻고 진행 상황을 표시합니다. 그러나 공식적으로 제공되는 예제는 PHP 버전입니다. 이 기사에서는 Aspnet에서 Uploadify의 사용을 자세히 소개합니다. 또한 아래 링크를 클릭하여 데모 또는 다운로드할 수도 있습니다.
먼저 렌더링을 보여드리겠습니다.
수정:
uploadify-cancel.png 파일을 찾을 수 없다고 보고되었습니다. uploadify.css를 찾아 .uploadify-queue-item .cancel {을 찾아 파일 경로를 수정하세요.
많은 사람들이 Chrome 및 Firefox에서 uploadify를 사용할 때 세션을 얻을 수 없어 업로드 오류가 발생한다고 말합니다. 매개변수에 세션 ID 메소드를 수동으로 추가해야 합니다. 그런데 여기서는 그렇게 하지 않았고, 크롬이나 파이어폭스에서는 업로드하는데 문제가 없었는데, 최신 버전을 사용해서 그런 것인지 모르겠습니다.
핵심사항:
uploadify의 js 구성은 비교적 포괄적이며 일부 메소드와 속성은 실제 사용 중에 적절하게 삭제할 수 있습니다.
일반적인 상황에서는 단일 파일 업로드 시 onSelect, onUploadError 및 onUploadSuccess만 고려할 수 있습니다.
여러 파일 업로드인 경우 단일 파일 업로드 외에도 onQueueComplete를 추가하여 전체 대기열을 모니터링합니다.
모든 파일 업로드 시작: $('#file_upload').uploadify('upload', '*');
업로드 취소: $('#file_upload').uploadify('cancel', parm);
parm이 비어 있음: 첫 번째 파일 업로드를 취소합니다.
parm은 '*'입니다: 업로드된 모든 파일을 취소합니다.
parm은 파일 ID입니다: 파일 ID에 해당하는 파일을 취소합니다.
일부 추가 변수 수정: $('#file_upload').uploadify("settings","formData",{"name1":"중국어 이름","parm1":"수정된 매개변수"}); json에 변수가 이미 있으면 속성을 덮어씁니다. 그렇지 않으면 속성을 추가합니다.
서버 측 설정 인코딩은 upload.setHeaderEncoding("UTF-8");이므로 구문 분석된 파일 이름은 일반 중국어입니다. 그런데 파싱된 추가변수가 중국어로 깨져있어서 여기서 트랜스코딩을 하게 됩니다. (항상 트랜스코딩이 상대적으로 낮다는 느낌이 들고, 어디 설정이 잘못된건지 모르겠습니다.) new String(item.getString().getBytes("iso8859-1"),"utf-8")
서버는 최종적으로 파일 저장 경로를 반환합니다(여기서 반환 내용을 원하는 대로 정의할 수 있습니다).
단계:
업로드 구성
<%@ page language="java" contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"%> <%String path = request.getContextPath();%> <%String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <base href="<%=basePath %>"> <title></title> <link rel="stylesheet" type="text/css" href="jquery-easyui-1.4.3/themes/default/easyui.css"> <link rel="stylesheet" type="text/css" href="jquery-easyui-1.4.3/themes/icon.css"> <script type="text/javascript" src="jquery-easyui-1.4.3/jquery.min.js"></script> <script type="text/javascript" src="jquery-easyui-1.4.3/jquery.easyui.min.js"></script> <script type="text/javascript" src="uploadify/uploadify/jquery.uploadify.min.js"></script> <link rel="stylesheet" type="text/css" href="uploadify/uploadify/uploadify.css" /> </head> <script> $(function(){ $(function() { $(function() { $('#file_upload').uploadify({ 'uploader' : '<%=basePath%>/UploadServlet',//服务端地址 'swf' : 'uploadify/uploadify/uploadify.swf', 'buttonImage' : 'uploadify/uploadify/img/chooseFile.jpg',//重载按钮图片 'buttonClass' : 'some-class',//重载按钮样式 'height':19,//按钮宽度和高度 'width':76, 'queueID' : 'file_queue',//显示文件队列的一个div,在页面定义 'formData' : {'parm1':'参数1','year':'2016'},//附加参数,可以在upload参数中更改 'buttonText':'选择文件',//按钮显示文字,如果有图片的话,会被图片挡住 'fileSizeLimit':'1MB',//文件最大 'auto':false,//自动提交 'fileTypeExts' : '*.gif; *.jpg; *.png',//文件类型 'fileTypeDesc' : '只能上传图片',//选择文件的时候的提示信息 'multi' : true,//多选 'queueSizeLimit' : 3,//队列中文件的个数 'onSelect' : function(file) { console.log(file); alert("选择文件:" + file.name + "\n类型="+file.type+"\n大小="+file.size); if(file.size>1024000){//文件太大,取消上传该文件 alert("文件大小超过限制!"); $('#file_upload').uploadify('cancel',file.id); } }, 'onUploadSuccess' : function(file, data, response) { alert('每个文件上传成功后触发 ' + file.name + ' was successfully uploaded with a response of ' + response + ':' + data); }, 'onUploadComplete' : function(file) { alert('每个文件上传完成,无论对错都触发! ' + file.name + ' finished processing.'); }, 'onUploadError' : function(file, errorCode, errorMsg, errorString) { alert('上传出错 ' + file.name + ' could not be uploaded: ' + errorString); }, 'onQueueComplete':function(queueData){ alert("队列中的所有文件上传完成后触发。 "+queueData.uploadsSuccessful+'\n'+queueData.uploadsErrored) }, }); }); }); }); function upload(){ $('#file_upload').uploadify("settings","formData",{"name1":"中文name","parm1":"修改后的参数"}); $('#file_upload').uploadify('upload', '*');//上传所有文件 } function cancel(){ $('#file_upload').uploadify('cancel', '*');//取消所有文件 } function destroy(){ alert("取消upload上传,变成原来样式!"); $('#file_upload').uploadify('destroy');//destory } </script> <body> <div class="easyui-panel" title="说明" style="margin-bottom:15px"> </div> <div class="easyui-panel" style="text-align:center;margin-bottom:15px"> <a href="javascript:void(0)" class="easyui-linkbutton" onclick="upload()">开始上传</a> <a href="javascript:void(0)" class="easyui-linkbutton" onclick="cancel()">取消上传</a> <a href="javascript:void(0)" class="easyui-linkbutton" onclick="destroy()">destroy</a> <input type="file" name="file_upload" id="file_upload" /> <div id="file_queue" style="width:400px;height:10px;position:absolute;z-index:999"></div> </div> </body> </html>
서버
package com.servlet; import java.io.File; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Iterator; import java.util.List; import java.util.UUID; import javax.servlet.ServletException; import javax.servlet.annotation.WebServlet; import javax.servlet.http.HttpServlet; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.apache.commons.fileupload.FileItem; import org.apache.commons.fileupload.FileUploadException; import org.apache.commons.fileupload.disk.DiskFileItemFactory; import org.apache.commons.fileupload.servlet.ServletFileUpload; /** * Servlet implementation class UploadServlet */ @WebServlet(name="UploadServlet",urlPatterns="/UploadServlet") public class UploadServlet extends HttpServlet { private static final long serialVersionUID = -6483558339095298703L; /** * @see HttpServlet#HttpServlet() */ public UploadServlet() { super(); // TODO Auto-generated constructor stub } /** * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response) */ protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // TODO Auto-generated method stub response.getWriter().append("Served at: ").append(request.getContextPath()); } /** * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response) */ protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { System.out.println("获取session,可以根据这个session进行一些其他的判断" + request.getSession().getId()); SimpleDateFormat sdf=new SimpleDateFormat("yyyyMMdd"); String remotePath = File.separator + "download" + File.separator + sdf.format(new Date()) + File.separator; String savePath = remotePath; File dfile = new File(savePath); if (!dfile.exists()) { dfile.mkdirs(); } DiskFileItemFactory fac = new DiskFileItemFactory(); ServletFileUpload upload = new ServletFileUpload(fac); upload.setHeaderEncoding("UTF-8"); List<FileItem> fileList = null; try { fileList = upload.parseRequest(request); } catch (FileUploadException ex) { return; } Iterator<FileItem> it = fileList.iterator(); String name = ""; String extName = ""; while (it.hasNext()) { FileItem item = it.next(); if (!item.isFormField()) { name = item.getName(); long size = item.getSize(); String type = item.getContentType(); System.out.println("文件=" + name + " " + size + " " + type); if (name == null || name.trim().equals("")) { continue; } // 扩展名格式: if (name.lastIndexOf(".") >= 0) { extName = name.substring(name.lastIndexOf(".")); } File file = null; do { // 生成文件名: name = UUID.randomUUID().toString(); file = new File(savePath + name + extName); } while (file.exists()); File saveFile = new File(savePath + name + extName); try { item.write(saveFile); } catch (Exception e) { e.printStackTrace(); } }else if(item.isFormField()){ System.out.println("表单内容:" + item.getFieldName() + "=" + new String(item.getString().getBytes("iso8859-1"),"utf-8")); } } String requestPath = remotePath + name + extName; request.getSession().setAttribute(requestPath, requestPath); response.getWriter().write(savePath + name + extName); } }