Skip to main content

File searching in your system through in Java

File searching through java
Input    : File Name and the directory to which searching
Output : List of files

Main Class :

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
package com.rakesh.codetalk.fileSearch;

import java.io.BufferedReader;
import java.io.File;
import java.io.InputStreamReader;
import java.util.ArrayList;

/**
 * @author Rakesh KR
 * @since  December 2K14
 */
public class FileSearchBO {
 
 public static void main(String argv[]) throws Exception{
  
  FileSearchDTO fileSearchDTO = new FileSearchDTO();
  FileSearchDAO fileSearchDAO = new FileSearchDAO();
  BufferedReader br           = new BufferedReader(new InputStreamReader(System.in));
  
  System.out.println("Enter the fileName to be searched : ");
  fileSearchDTO.setFileNameToSearch(br.readLine());
  
  System.out.println("Enter the directory to which search : ");
  fileSearchDAO.search(new File(br.readLine()), fileSearchDTO , new ArrayList<String>());
  
  if(fileSearchDTO.getResultFileList()!=null && !fileSearchDTO.getResultFileList().isEmpty()){
   
   System.out.println("\n\nFile Founded At : ");
   
   for(String files : fileSearchDTO.getResultFileList()){

    System.out.println(" "+files);

   }
  } else{
   System.out.println("Error : "+fileSearchDTO.getStatusString());
  }
  
 }
 
}


Supporting Classes :
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.rakesh.codetalk.fileSearch;

import java.io.File;
import java.util.List;

/**
 * @author Rakesh KR
 * @since  December 2K14
 */
public class FileSearchDAO {
 
 public void search(File searchFile, FileSearchDTO fileSearchDTO , List<String> resultFileList){
  
  try{
      
   if(searchFile!=null){
    
    if(searchFile.isDirectory()){
     
     if(searchFile.canRead()){
      
      for(File file : searchFile.listFiles()){
       
       System.out.println(file);
       
       if(file.isDirectory()){
        search(file, fileSearchDTO, resultFileList);
       } else{
        if(fileSearchDTO.getFileNameToSearch().equalsIgnoreCase(file.getName())){
         resultFileList.add(file.getAbsolutePath());
        }
       }
       
      }
      
     } else{
      fileSearchDTO.setStatusString("No Permission to Read !!! File : "+searchFile.getAbsoluteFile());
     }
     
    } else{
     fileSearchDTO.setStatusString("Not a Directory !!! File : "+searchFile.getAbsoluteFile());
    }
    
   } else{
    fileSearchDTO.setStatusString("No such File !!! ");
   }
   
   if(resultFileList!=null && !resultFileList.isEmpty()){
    fileSearchDTO.setResultFileList(resultFileList);
    fileSearchDTO.setStatusString("File Searching Success !!! ");
   }
   
  } catch(Exception e){
   fileSearchDTO.setStatusString("Error in File Searching !!! ");
   e.printStackTrace();
  } finally{
   
   resultFileList = null;
   
  }
  
 }

}



 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
package com.rakesh.codetalk.fileSearch;

import java.io.File;
import java.util.List;

/**
 * @author Rakesh KR
 * @since  December 2K14
 */
public class FileSearchDTO {
 
 private File file;
 
 private String statusString;
 
 private String fileNameToSearch;
 
 private List<String> resultFileList;
 
 
 /**
  * @return the file
  */
 public File getFile() {
  return file;
 }

 /**
  * @param file the file to set
  */
 public void setFile(File file) {
  this.file = file;
 }

 /**
  * @return the statusString
  */
 public String getStatusString() {
  return statusString;
 }

 /**
  * @param statusString the statusString to set
  */
 public void setStatusString(String statusString) {
  this.statusString = statusString;
 }

 /**
  * @return the fileNameToSearch
  */
 public String getFileNameToSearch() {
  return fileNameToSearch;
 }

 /**
  * @param fileNameToSearch the fileNameToSearch to set
  */
 public void setFileNameToSearch(String fileNameToSearch) {
  this.fileNameToSearch = fileNameToSearch;
 }

 /**
  * @return the resultFileList
  */
 public List<String> getResultFileList() {
  return resultFileList;
 }

 /**
  * @param resultFileList the resultFileList to set
  */
 public void setResultFileList(List<String> resultFileList) {
  this.resultFileList = resultFileList;
 } 
  
}


Output Sample :
Enter the fileName to be searched : 
Rakesh.txt
Enter the directory to which search : 
/media/rakesh/WorkZ/WorkZ/CodeTalk/

/media/rakesh/WorkZ/WorkZ/CodeTalk/Short URL
/media/rakesh/WorkZ/WorkZ/CodeTalk/JAVA
/media/rakesh/WorkZ/WorkZ/CodeTalk/JAVA/What is the difference between JVM, JDK & JRE
/media/rakesh/WorkZ/WorkZ/CodeTalk/JAVA/Why we Pass String array as argument to main method [JAVA]
/media/rakesh/WorkZ/WorkZ/CodeTalk/JAVA/Rakesh.txt
/media/rakesh/WorkZ/WorkZ/CodeTalk/Linux
/media/rakesh/WorkZ/WorkZ/CodeTalk/Linux/Installing Java 7 on Ubuntu .txt
/media/rakesh/WorkZ/WorkZ/CodeTalk/Linux/Install Google Chrome.txt
/media/rakesh/WorkZ/WorkZ/CodeTalk/Linux/Rakesh.txt
/media/rakesh/WorkZ/WorkZ/CodeTalk/Images
/media/rakesh/WorkZ/WorkZ/CodeTalk/Images/copy of Ct-logo-small.png
/media/rakesh/WorkZ/WorkZ/CodeTalk/Images/Ct-logo-small.png
/media/rakesh/WorkZ/WorkZ/CodeTalk/Images/CodeTalk2.png
/media/rakesh/WorkZ/WorkZ/CodeTalk/Images/jvm_jre_jdk.jpg
/media/rakesh/WorkZ/WorkZ/CodeTalk/Images/CCCCCCCCC.jpg
/media/rakesh/WorkZ/WorkZ/CodeTalk/Images/CodeTalk.jpg
/media/rakesh/WorkZ/WorkZ/CodeTalk/Images/Ct-logo-big.png


File Founded At : 
 /media/rakesh/WorkZ/WorkZ/CodeTalk/JAVA/Rakesh.txt
 /media/rakesh/WorkZ/WorkZ/CodeTalk/Linux/Rakesh.txt

Comments

Popular posts from this blog

ജാവാ വളരെ സിമ്പിൾ ആണ് , പവർഫുൾ ഭയങ്കര പവർഫുൾ ആണ്.

ജാവ യെ  കുറിച്ച്  മലയാളത്തിൽ  ഡോകുമെന്റുകളോ  ബ്ലോഗ്‌കളോ  കൂടുതൽ ഇല്ലാത്തതുകൊണ്ട് എനികറിയവുന്നത് ഷെയർ ചെയ്യാം എന്ന് വിചാരിച്ചു .  ജവയെ കുറിച്ച് പറയുകയാണെങ്കിൽ  ജാവാ വളരെ സിമ്പിൾ ആണ് , പവർഫുൾ  ഭയങ്കര പവർഫുൾ ആണ്. :) 1. നമ്മടെ Sun MicroSystems 1995 ൽ തുടങ്ങി വച്ചാ സംഭവമാണിത് . 2. ഇപ്പൊ ജാവയുടെ എട്ടാമത്തെ വെർഷൻ  വരെ ഇറങ്ങികഴിഞ്ഞു . ജാവയുടെ തിയറിയെ കുറിച്ച് എനിക്ക് പറയാൻ താല്പര്യം  ഇല്ലാ, അത് അറിവിള്ളവർ നല്ലപോലെ പറഞ്ഞിടുണ്ട്. നമുക്ക് ഡയറക്റ്റ്  ആയി കോഡിംഗ് പാർട്ടിലേക്ക്  പോകാം. എങ്ങനെയാ ജാവ ഇൻസ്റ്റോൾ ചെയണ്ടേ എന്നൊക്കെ ഒന്ന് ഗൂഗിൾനോട് ചോദിച്ചാ മതി പുള്ളി പറഞ്ഞുതരും. പിന്നെ എല്ലാവരും പറയുന്നു ജാവാ Object  Oriented ആണെന്ന് . അതെ ജാവാ Object Oriented ആണ് . എന്താണ് Object ?, Object  നു വച്ചാ ഒരു സാധനം അത്രതന്നെ. ഇപ്പൊ example പറയുകയാണെങ്കിൽ Book ഒരു സാധനമാണ് . Book റ്റെ പ്രതേകത എന്തൊക്കെ അന്നെന്നുവച്ചാ ആതിനൊരു Auther ഉണ്ടാകും, അതൊരു Category ൽ പെട്ട book ആയിരിക്കും (Novel / Academic ) പിന്നെ ഓരോ bookനും അ...

Angular (web framework)

 Angular is a TypeScript-based free and open-source web application framework lead by the Angular Team at Google and by a community of individuals and corporations. Angular is a complete rewrite from the same team that built AngularJS. Google designed Angular as a ground-up rewrite of AngularJS. Angular 14 was released on June 02, 2022. Some new features include typed forms, standalone components, and new primitives in the Angular CDK (component dev kit). All the major releases are supported for 18 months.  This consists of 6 months of active support, during which regularly-scheduled updates and patches are released. It is then followed by 12 months of long-term support (LTS), during which only critical fixes and security patches are released. Official website :- https://angular.io/

Java String Token

Problem    Given a string, find number of words in that string.     For this problem a word is defined by a string of one or more english alphabets. Input Format   A string not more than 400000 characters long.    The string can be defined by following regular expression:       [A-Za-z !,?.\_'@]+   That means the string will only contain english alphabets,    blank spaces and this characters: "!,?._'@". Output Format   In the first line, print number of words nn in the string.    The words don't need to be unique. In the next nn lines,    print all the words you found in the order they appeared in the input. Sample Input   He is a very very good boy, isn't he? Sample Output 10 He is a very very good boy isn t he Solution import java.io.* ; import java.util.* ; public class Solution { ...