Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to write in java something like this:

public class MyMatcher 
{
   public static boolean isMatching(String filename, String param) { 
      ...
   }
}

filename would be the name of a file without the directory (e.g.: readme.txt, shares.csv, a nice song.mp3, ...)

param would be something like "*.mp3" to say all of the files ending with .mp3 and so on.

Note: param is not regular expression statement is more like the usual way of searching files like on textpad or eclipse or even the dos dir.

Can somebody suggest either how to do this or if there is some opensource library to do this ?

share|improve this question
So the param may be "*.m?3"? – user unknown Apr 14 '11 at 11:13

2 Answers

up vote 1 down vote accepted

Apache Commons IO has a WilcardFileFilter:

The wildcard matcher uses the characters '?' and '*' to represent a single or multiple wildcard characters.

Example from the javadoc:

File dir = new File(".");
FileFilter fileFilter = new WildcardFileFilter("*test*.java~*~");
File[] files = dir.listFiles(fileFilter);
for (int i = 0; i < files.length; i++) {
  System.out.println(files[i]);
}
share|improve this answer
Thanks I will check this out. – chacko Apr 14 '11 at 12:53
String pattern = param.replaceAll ("\\*", ".*").replaceAll ("\\?", ".");
return filename.matches (pattern); 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.