2016-09-26 15 views
0

ファイルをアップロードする際に重複を避けたい。以前にアップロードされたものと同じ名前であっても、ファイルが更新された場合、そのファイルをサーバーにアップロードできるはずです。サーバにファイルをアップロード中に重複を避ける

私は、サーブレット、次の書かれている:

protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { 
     if (req.getParameter("from").equals("upload")) { 

      // checks if the request actually contains upload file 
      if (!ServletFileUpload.isMultipartContent(req)) { 
       PrintWriter writer = resp.getWriter(); 
       writer.println("Request does not contain upload data"); 
       writer.flush(); 
       return; 
      } 

      // configures upload settings 
      DiskFileItemFactory factory = new DiskFileItemFactory(); 

      factory.setRepository(new File(System.getProperty("java.io.tmpdir"))); 

      ServletFileUpload upload = new ServletFileUpload(factory); 

      // constructs the directory path to store upload file 
      String uploadPath = getServletContext().getRealPath("") + File.separator + UPLOAD_DIRECTORY; 
      // creates the directory if it does not exist 
      File uploadDir = new File(uploadPath); 
      if (!uploadDir.exists()) { 
       uploadDir.mkdir(); 
      } 

      try { 
       // parses the request's content to extract file data 
       List formItems = upload.parseRequest(req); 
       Iterator iter = formItems.iterator(); 

       // iterates over form's fields 
       while (iter.hasNext()) { 
        FileItem item = (FileItem) iter.next(); 
        // processes only fields that are not form fields 
        if (!item.isFormField()) { 
         String fileName = new File(item.getName()).getName(); 

         filePath = uploadPath + File.separator + fileName; 
         File storeFile = new File(filePath); 
         SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd HH:mm:sss"); 
         System.out.println(f.format(storeFile.lastModified())); 
         System.out.println(storeFile.lastModified()); 
         System.out.println(f.parse(f.format(storeFile.lastModified()))); 

         File[] files = new File(
           "C:\\bootcamp\\programs\\eclipse-jee-neon-RC3-win32-x86_64\\eclipse\\workspace\\.metadata\\.plugins\\org.eclipse.wst.server.core\\tmp0\\wtpwebapps\\excelFileManagement\\upload") 
             .listFiles(); 
         int uploadFiles=0; 
         for (File file : files) { 


           if (fileName.equals(file.getName())) { 
            uploadFiles =1; 
            System.out.println("same"); 
            DateFormat df = new SimpleDateFormat("yyyy-mm-dd hh:mm:sss"); 
            String currentFile = df.format(storeFile.lastModified()); 
            String storedFile = df.format(file.lastModified()); 
            System.out.println("currentFile" + currentFile + "storedFile" + storedFile); 
            if (currentFile.contains(storedFile)) { 
             System.out.println("Same file cannot be uploaded again"); 
             getServletContext().getRequestDispatcher("/Error.jsp").forward(req, resp); 
            } else { 
             // saves the file on disk 
             item.write(storeFile); 
             System.out.println("Upload has been done successfully!"); 
             // Reading excel file 
             ReadingExcelFile rd = new ReadingExcelFile(); 
             rd.readExcel(filePath); 
             getServletC 

ontext().getRequestDispatcher("/DisplayTables.jsp").forward(req, resp); 


            } 
           } 
} 
catch (Exception ex) { 
       System.out.println("There was an error: " + ex.getMessage()); 
      }} 

しかし、私は、ファイルの両方に同じ最終更新日時を取得しています。新しいファイルがアップロードされた場合、storeFile.lastModified()はThu Jan 01 05:30:00 IST 1970の値を返します。

+0

ああ、皮肉...(重複を避けることに関する質問は重複しています) –

+0

更新されたファイルは重複して分類されてはなりません –

答えて

0

OSエクスプローラですでにアップロードされているファイルの実際のlastModified日付を確認できますか?

SimpleDateFormatのコンストラクタ引数mの

2つ目は分を意味し、month.Also Sは てSimpleDateFormatだろうmillsecond.Soあなたの正しいコードを意味するためにMスタンド( "YYYY-MM-DD HH:MM:S")

これらの変更を試して確認できますか?

+0

実際に変更された日付は2016/25/09 10:46: 009 –

関連する問題