Struts 多图片上传

  1. Struts 多图片上传
  2. 转(http://www.68design.net/Development/JSP/29556-2.html)  我总结了一下收藏了
  3. upfile.jsp:
  4. <html:html lang="true">
  5.   <head>
  6.     <html:base />
  7.     
  8.     <title>upfile.jsp</title>
  9.     <meta http-equiv="pragma" content="no-cache">
  10.     <meta http-equiv="cache-control" content="no-cache">
  11.     <meta http-equiv="expires" content="0">    
  12.     <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
  13.     <meta http-equiv="description" content="This is my page">
  14.     <!--
  15.     <link rel="stylesheet" type="text/css" href="styles.css">
  16.     -->
  17.   </head>
  18.   
  19.   <body>
  20.   <html:form action="uploaded.do" enctype="multipart/form-data" method="post">
  21.    <input type="file" name="file0" size="35" value="">
  22.   <input type="file" name="file1" size="35" value="">
  23.     <input type="submit" value="上传文件" value="submit"
  24.                 οnclick="return(confirm('你确认要上传文件吗?'))">
  25.     </html:form>
  26.   </body>
  27. </html:html>
  28. Action:
  29. public class UploadedAction extends Action {
  30.     public ActionForward execute(ActionMapping mapping, ActionForm form,
  31.             HttpServletRequest request, HttpServletResponse response) {
  32.          DynaActionForm fileForm = (DynaActionForm) form;
  33.          FormFile file0 = (FormFile) fileForm.get("file0");
  34.          FormFile file1 = (FormFile) fileForm.get("file1");
  35.          Map< String, FormFile> fileMap = new HashMap< String, FormFile>();
  36.             fileMap.put("file0" + "*type0*name0", file0);
  37.             fileMap.put("file1" + "*type1*names1", file1);
  38.             Set fileSet = fileMap.entrySet();
  39.             Iterator iter = fileSet.iterator();
  40.             String filePath = this.getServlet().getServletContext().getRealPath("/");
  41.             // 保存文件的文件夹
  42.             File savePath = new File(filePath + "UploadFiles//");
  43.             filePath = filePath+ "UploadFiles//";
  44.             if (!savePath.exists()) {
  45.                 savePath.mkdir();
  46.             }
  47.             while (iter.hasNext()) {
  48.                 Map.Entry unit = (Map.Entry) iter.next();
  49.                 String key = (String) unit.getKey();
  50.                 FormFile file = (FormFile) unit.getValue();    
  51.                 //文件大小符合要求,且是图片文件
  52.                 if ((file.getFileSize() >= 1)&& DealPhoto.isPhoto(file)) {
  53.                     //图片类别
  54.                     String photoType = key.substring(key.indexOf("*") + 1, key
  55.                             .lastIndexOf("*"));
  56.                     System.out.println(photoType);
  57.                     //图片描述
  58.                     String photoName = key.substring(key.lastIndexOf("*") + 1, key
  59.                             .length());
  60.                     System.out.println(photoName);
  61.                     //存数据库操作,在数据库中保存文件的名称,类型,及在服务器上的相对
  62. 路径
  63.                     //判断是否重名
  64.                     if(DealPhoto.isFileExist(file.getFileName(),filePath))
  65.                         DealPhoto.rename(file.getFileName(),filePath);
  66.                     try {
  67.                      InputStream stream = file.getInputStream();// 把文件读入
  68.                      // 建立一个上传文件的输出流 
  69.                      OutputStream bos = new FileOutputStream
  70. (filePath+file.getFileName());
  71.                      int bytesRead = 0;
  72.                      byte[] buffer = new byte[stream.available()];
  73.                      while ((bytesRead = stream.read(buffer, 0, stream.available())) 
  74. != -1) {
  75.                       bos.write(buffer, 0, bytesRead);// 将文件写入服务器
  76.                      }
  77.                      bos.close();
  78.                      stream.close();
  79.                     } catch (Exception e) {
  80.                         e.printStackTrace();
  81.                     }
  82.                 }
  83.             }
  84.             return mapping.findForward("success");
  85.             
  86.     }
  87. }
  88. Struts-config.xml:
  89. <struts-config>
  90.   <data-sources />
  91.   <form-beans >
  92.        <form-bean name="uploadForm" type="org.apache.struts.action.DynaActionForm">
  93.            <form-property name="file0" type ="org.apache.struts.upload.FormFile"/>
  94.            <form-property name="file1" type ="org.apache.struts.upload.FormFile"/>
  95.        </form-bean>
  96.   </form-beans>
  97.   <global-exceptions />
  98.   <global-forwards>
  99.    <forward name= "success" path="/test.jsp"></forward> 
  100.   </global-forwards>
  101.   <action-mappings >
  102.     <action
  103.       name="uploadForm"
  104.       input="/upfile.jsp"
  105.       path="/uploaded"
  106.       type="com.struts.action.UploadedAction" />
  107.   </action-mappings>
  108.   <message-resources parameter="com.struts.ApplicationResources" />
  109. </struts-config>
  110. 辅助类 DealPhoto:
  111. public class DealPhoto {
  112.     public static boolean isPhoto(FormFile file) {
  113.         String fileName = getString(file.getFileName());
  114.         if (fileName.equals(""))
  115.             return false;
  116.         if ((fileName.toLowerCase().endsWith(".jpg"))
  117.                 || (fileName.toLowerCase().endsWith(".gif"))
  118.                 || (fileName.toLowerCase().endsWith(".png")))
  119.             return true;
  120.         else
  121.             return false;
  122.     }
  123.     /**
  124.      * 
  125.      * @param str
  126.      * @return
  127.      */
  128.     public static String getString(String str) {
  129.         if (str == null)
  130.             str = "";
  131.         if (str.equals("null"))
  132.             str = "";
  133.         str = str.trim();
  134.         return str;
  135.     }
  136.     /**
  137.      * 判断文件是否存在
  138.      * @param fileName
  139.      * @param dir
  140.      * @return
  141.      */
  142.     public static boolean isFileExist(String fileName, String dir) {
  143.         File files = new File(dir + fileName);
  144.         return (files.exists()) ? true : false;
  145.     }
  146.     /**
  147.      * 重命名
  148.      * @param fileName
  149.      * @param dir
  150.      */
  151.     public static void rename(String fileName, String dir) {
  152.         String extendFile = "";
  153.         if (isJpg(fileName))
  154.             extendFile = ".jpg";
  155.         else if (isGif(fileName))
  156.             extendFile = ".gif";
  157.         else if (isPng(fileName))
  158.             extendFile = ".png";
  159.         else
  160.             extendFile = ".jpg";
  161.         Random random = new Random();
  162.         int add = random.nextInt(10000);
  163.         String ret = fileName + add + extendFile;
  164.         while (isFileExist(ret, dir)) {
  165.             add = random.nextInt(10000);
  166.             ret = fileName + add + extendFile;
  167.         }
  168.         File file = new File(dir + fileName);
  169.         File reFile = new File(dir + ret);
  170.         file.renameTo(reFile);
  171.     }
  172.     public static boolean isGif(String file) {
  173.         if (file.toLowerCase().endsWith(".gif")) {
  174.             return true;
  175.         } else {
  176.             return false;
  177.         }
  178.     }
  179.     public static boolean isJpg(String file) {
  180.         if (file.toLowerCase().endsWith(".jpg")) {
  181.             return true;
  182.         } else {
  183.             return false;
  184.         }
  185.     }
  186.     public static boolean isPng(String file) {
  187.         if (file.toLowerCase().endsWith(".png")) {
  188.             return true;
  189.         } else {
  190.             return false;
  191.         }
  192.     }
  193. }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值