在Java中使用FileFilter搜尋檔案

來源:互聯網
上載者:User

FileFilter 包含在Java Development Kit (JDK) 1.2 眾多的附件中。他的主要作用就是檢測檔案是否存在。FileFilter 和他的前身FilenameFilter 唯一的不同是FileFilter 提供檔案對象的存取方法,而FilenameFilter 是按照目錄和檔案名稱的方式來工作的。

例如,FileFilter 是這樣的:

boolean accept(File file);

而FilenameFilter 卻是以下的樣子:

boolean accept(File directory, String name);

一個簡單的例子是搜尋特定的副檔名。你可以使用FilenameFilter ,但是出來的結果會讓你很難判斷到底是檔案夾還是檔案。要解決這個問題,你需要使用檔案對象。也就是使用FileFilter吧。

以下是ExtensionFileFilter 的代碼:

package com.generationjava.io.find;import java.io.File;import java.io.FileFilter;public class ExtensionFileFilter implements FileFilter {private String extension;public ExtensionFileFilter(String extension) {this.extension = extension;}public boolean accept(File file) {if(file.isDirectory( )) {return false;}String name = file.getName( );// find the lastint idx = name.lastIndexOf(".");if(index == -1) {return false;} elseif(index == name.length( ) -1) {return false;} else {return this.extension.equals(name.substring(index+1));}}}

以下的例子中用到了上述的ExtensionFileFilter 代碼:

...String dir = "...";  // directory of your choiceFile file = new File(dir);File[] files = file.listFiles(new ExtensionFileFilter("cfg"));// files variable is now c:\*.cfg if @#dir@# is c:\// that is, all the files in the specified directory ending in *.cfg...

FileFilter 其實是從 javax.swing.filechooser.FileFilter派生出來的,javax.swing.filechooser.FileFilter 是使用JFileChoosers的抽象類別。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.