util

Search files in a directory using FutureTask example

In this example we shall show you how to search files in a directory using FutureTask. We have implemented a Class called MatchCounter, that implements the Callable Interface. It is a task that counts the files in a directory and its subdirectories that contain a given keyword. The basics of the example are shown below:

  • The example’s task, MatchCounter is configured using a File directory in which to start the search, a String representing the keyword to look for and returns an integer counter of the number of files that contained the specific keyword.
  • MatchCounter‘s call() method performs the functionality described above. It checks the files listed in the given directory for the specific keyword and sums the accourances found. In case there are sub-directories (isDirectory() API method of File) we create a new FutureTask and execute the same Callable (MatchCounter) for the specific subdirectory.
  • For each task a Thread is created to run it.
  • Last but not least a helper method is implemented, so as to actually search the contents of a file for a specific keyword. It is invoked by the call() method of the MatchCounter task. For each line of the file (nextLine() API method of the Scanner) it checks if it contains the specific keyword (contains(CharSequence s) API method of the String) and returns true if the keyword exists.

Let’s take a look at the code snippet that follows:

001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
052
053
054
055
056
057
058
059
060
061
062
063
064
065
066
067
068
069
070
071
072
073
074
075
076
077
078
079
080
081
082
083
084
085
086
087
088
089
090
091
092
093
094
095
096
097
098
099
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
package com.javacodegeeks.snippets.core;
 
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Scanner;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.concurrent.FutureTask;
 
public class FutureTest {
 
 
    public static void main(String[] args) {
 
   
 
  Scanner input = new Scanner(System.in);
 
   
 
  System.out.print("Please enter directory (e.g. /usr/local/jdk7.0/src): ");
 
   
 
  String dir = input.nextLine();
 
   
 
  System.out.print("Please enter keyword (e.g. myFile): ");
 
   
 
  String keyword = input.nextLine();
 
 
  MatchCounter countFiles = new MatchCounter(new File(dir), keyword);
 
  FutureTask<Integer> tsk = new FutureTask<Integer>(countFiles);
 
  Thread thread = new Thread(tsk);
 
  thread.start();
 
  try {
 
 
System.out.println(tsk.get() + " matching files.");
 
  } catch (ExecutionException e) {
 
 
e.printStackTrace();
 
  } catch (InterruptedException e) {
 
  }
    }
}
 
/**
 * This task counts the files in a directory and its subdirectories that contain
 * a given keyword.
 */
class MatchCounter implements Callable<Integer> {
 
    /**
     *
     * dir the directory in which to start the search
     * keyword the keyword to look for
     *
     */
     
    private File dir;
    private String keyword;
    private int counter;
     
    public MatchCounter(File directory, String keyword) {
 
  this.dir = directory;
 
  this.keyword = keyword;
    }
 
    public Integer call() {
 
  counter = 0;
 
  try {
 
 
 
 
 
File[] files = dir.listFiles();
 
 
ArrayList<Future<Integer>> results = new ArrayList<Future<Integer>>();
 
 
 
for (File file : files) {
 
 
    if (file.isDirectory()) {
 
 
 
  MatchCounter counter = new MatchCounter(file, keyword);
 
 
 
  FutureTask<Integer> task = new FutureTask<Integer>(counter);
 
 
 
  results.add(task);
 
 
 
  Thread t = new Thread(task);
 
 
 
  t.start();
 
 
    } else {
 
 
 
  if (search(file)) {
 
 
 
 
counter++;
 
 
 
  }
 
 
    }
 
 
}
 
 
 
for (Future<Integer> result : results) {
 
 
    try {
 
 
 
  counter += result.get();
 
 
    } catch (ExecutionException e) {
 
 
 
  e.printStackTrace();
 
 
    }
 
 
}
 
  } catch (InterruptedException e) {
 
  }
 
  return counter;
    }
 
    /**
     * Searches a file for a given keyword.
     *
     *  file the file to search
     *  returns true if the keyword is contained in the file
     */
    public boolean search(File file) {
 
  try {
 
 
Scanner in = new Scanner(new FileInputStream(file));
 
 
boolean found = false;
 
 
while (!found && in.hasNextLine()) {
 
 
    String line = in.nextLine();
 
 
    if (line.contains(keyword)) {
 
 
 
  found = true;
 
 
    }
 
 
}
 
 
in.close();
 
 
return found;
 
  } catch (IOException e) {
 
 
return false;
 
  }
    }
}

 
This was an example of how to search files in a directory using FutureTask in Java.

Ilias Tsagklis

Ilias is a software developer turned online entrepreneur. He is co-founder and Executive Editor at Java Code Geeks.
Subscribe
Notify of
guest


This site uses Akismet to reduce spam. Learn how your comment data is processed.

0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Back to top button