SWFUpload简单使用样例 Java版(JSP)

SWFUpload官方的样例都是PHP的,在这里提供一个Java版的最简单的使用样例,使用JSP页面完毕全部操作。

实现上传,分为三步:

1、JavaScript设置SWFUpload部分(与官方样例类似):

  1. var upload;
  2. window.onload = function() {
  3. upload = new SWFUpload({
  4. // 处理文件上传的url
  5. upload_url: "${pageContext.request.contextPath}/swfupload/example.jsp?upload=1",
  6. // 上传文件限制设置
  7. file_size_limit : "10240",  // 10MB
  8. file_types : "*.jpg;*.gif;*.png",   //此处也能够改动成你想限制的类型,比方:*.doc;*.wpd;*.pdf
  9. file_types_description : "Image Files",
  10. file_upload_limit : "0",
  11. file_queue_limit : "1",
  12. // 事件处理设置(全部的自己定义处理方法都在handler.js文件中)
  13. file_dialog_start_handler : fileDialogStart,
  14. file_queued_handler : fileQueued,
  15. file_queue_error_handler : fileQueueError,
  16. file_dialog_complete_handler : fileDialogComplete,
  17. upload_start_handler : uploadStart,
  18. upload_progress_handler : uploadProgress,
  19. upload_error_handler : uploadError,
  20. upload_success_handler : uploadSuccess,
  21. upload_complete_handler : uploadComplete,
  22. // 按钮设置
  23. button_image_url : "swfupload/xpbutton.png",    // 按钮图标
  24. button_placeholder_id : "spanButtonPlaceholder",
  25. button_width: 61,
  26. button_height: 22,
  27. // swf设置
  28. flash_url : "swfupload/swfupload.swf",
  29. custom_settings : {
  30. progressTarget : "fsUploadProgress",
  31. cancelButtonId : "btnCancel"
  32. },
  33. // Debug 设置
  34. debug: false
  35. });
  36. }

2、页面显示部分:

  1. <div class="flash" id="fsUploadProgress"></div>
  2. <div style="padding-left: 5px;">
  3. <span id="spanButtonPlaceholder"></span>
  4. <input id="btnCancel" type="button" value="取消" onclick="cancelQueue(upload);"
  5. disabled="disabled" style="margin-left: 2px; height: 22px; font-size: 8pt;" />
  6. </div>

3、Java处理文件上传部分:

  1. String uploadSign = request.getParameter("upload");
  2. String rootPath = request.getParameter("rootPath");
  3. String path = request.getParameter("path");
  4. if(rootPath == null) rootPath = "";
  5. rootPath = rootPath.trim();
  6. if(rootPath.equals("")){
  7. rootPath = application.getRealPath("/swfupload/files");
  8. }
  9. if(path == null) {
  10. path = rootPath;
  11. }else{
  12. path = new String(Base64.decodeBase64(path.getBytes()));
  13. }
  14. //上传操作
  15. if(null != uploadSign && !"".equals(uploadSign)){
  16. FileItemFactory factory = new DiskFileItemFactory();
  17. ServletFileUpload upload = new ServletFileUpload(factory);
  18. //upload.setHeaderEncoding("UTF-8");
  19. try{
  20. List items = upload.parseRequest(request);
  21. if(null != items){
  22. Iterator itr = items.iterator();
  23. while(itr.hasNext()){
  24. FileItem item = (FileItem)itr.next();
  25. if(item.isFormField()){
  26. continue;
  27. }else{
  28. //以当前精确到秒的日期为上传的文件的文件名称
  29. SimpleDateFormat sdf=new SimpleDateFormat("yyyyMMddkkmmss");
  30. String type = item.getName().split("\\.")[1];//获取文件类型
  31. File savedFile = new File(path,sdf.format(new Date())+"."+type);
  32. item.write(savedFile);
  33. }
  34. }
  35. }
  36. }catch(Exception e){
  37. e.printStackTrace();
  38. }
  39. }
上一篇:轮播插件unsilder 源码解析(二)


下一篇:Exponent CMS 2.3.9 配置文件写入 Getshell分析