{{theTime}}

Search This Blog

Total Pageviews

How to filter the file names in a directory using Java.

 
public String[] filterFileNames() throws IOException
   String pattern = "Today";
   final Pattern p = Pattern.compile(pattern);
   FilenameFilter filter = new FilenameFilter() {
   public boolean accept(File fdir, String fname)
   {
       Matcher m = p.matcher(fname);
       return m.matches();
   }};
   File dirFile = new File( "directory path" );
   String[] filteredFiles = dirFile.list(filter); 
   return filteredFiles ;
}



No comments:

LLMs for bytecode verification in the Java world

Using an LLM for bytecode verification isn’t about replacing the JVM’s strict verifier—it’s about augmenting it with semantic understandin...