本文整理汇总了Java中edu.stanford.nlp.io.ExtensionFileFilter类的典型用法代码示例。如果您正苦于以下问题:Java ExtensionFileFilter类的具体用法?Java ExtensionFileFilter怎么用?Java ExtensionFileFilter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
ExtensionFileFilter类属于edu.stanford.nlp.io包,在下文中一共展示了ExtensionFileFilter类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: f_miOpenActionPerformed
import edu.stanford.nlp.io.ExtensionFileFilter; //导入依赖的package包/类
private void f_miOpenActionPerformed(@SuppressWarnings("unused") java.awt.event.ActionEvent evt) {//GEN-FIRST:event_f_miOpenActionPerformed
JFileChooser _chooseFile = new JFileChooser(f_lastDirectoryText);
_chooseFile.setFileFilter(new ExtensionFileFilter("txt",true));
if(!(_chooseFile.showOpenDialog(null) == JFileChooser.APPROVE_OPTION)){
return;
}
File _f = _chooseFile.getSelectedFile();
System.out.println(_f.getAbsolutePath());
f_lastDirectoryText = _f.getParentFile();
loadText(_f);
}
示例2: loadPath
import edu.stanford.nlp.io.ExtensionFileFilter; //导入依赖的package包/类
/**
* Load trees from given directory.
*
* @param pathName File or directory name
* @param suffix Extension of files to load: If <code>pathName</code>
* is a directory, then, if this is
* non-<code>null</code>, all and only files ending in "." followed
* by this extension will be loaded; if it is <code>null</code>,
* all files in directories will be loaded. If <code>pathName</code>
* is not a directory, this parameter is ignored.
* @param recursively descend into subdirectories as well
*/
public void loadPath(String pathName, String suffix, boolean recursively) {
loadPath(new File(pathName), new ExtensionFileFilter(suffix, recursively));
}
示例3: processPath
import edu.stanford.nlp.io.ExtensionFileFilter; //导入依赖的package包/类
/**
* Apply a method to the files under a given directory and
* perhaps its subdirectories.
*
* @param pathStr file or directory to load from as a String
* @param suffix suffix (normally "File extension") of files to load
* @param recursively true means descend into subdirectories as well
* @param processor The <code>FileProcessor</code> to apply to each
* <code>File</code>
*/
public static void processPath(String pathStr, String suffix, boolean recursively, FileProcessor processor) {
processPath(new File(pathStr), new ExtensionFileFilter(suffix, recursively), processor);
}