JavaTM 2 Platform
Standard Ed. 6

javax.swing.filechooser
類別 FileFilter

java.lang.Object
  繼承者 javax.swing.filechooser.FileFilter
直接已知子類別:
BasicFileChooserUI.AcceptAllFileFilter, FileNameExtensionFilter

public abstract class FileFilter
extends Object

FileFilter 是一個抽象類別,JFileChooser 使用它過濾顯示給使用者的檔案集合。有關使用檔案擴展名進行過濾的實作,請參閱 FileNameExtensionFilter

FileFilter 可以設置在 JFileChooser 上,以阻止不需要的檔案出現在目錄清單中。有關簡單檔案過濾器的範例實作,請參閱 yourJDK/demo/jfc/FileChooserDemo/ExampleFileFilter.java。有關更多的資訊和範例,請參閱 The Java Tutorial 中的 How to Use Borders 一節。

另請參見:
FileNameExtensionFilter, JFileChooser.setFileFilter(javax.swing.filechooser.FileFilter), JFileChooser.addChoosableFileFilter(javax.swing.filechooser.FileFilter)

建構子摘要
FileFilter()
           
 
方法摘要
abstract  boolean accept(File f)
          此過濾器是否接受給定的檔案。
abstract  String getDescription()
          此過濾器的描述。
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

建構子詳細資訊

FileFilter

public FileFilter()
方法詳細資訊

accept

public abstract boolean accept(File f)
此過濾器是否接受給定的檔案。


getDescription

public abstract String getDescription()
此過濾器的描述。例如:"JPG and GIF Images"

另請參見:
FileView.getName(java.io.File)

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only