edu.illinois.cs.cogcomp.core.io.IOUtils.lsFiles()方法的使用及代码示例

x33g5p2x  于2022-01-21 转载在 其他  
字(4.5k)|赞(0)|评价(0)|浏览(98)

本文整理了Java中edu.illinois.cs.cogcomp.core.io.IOUtils.lsFiles()方法的一些代码示例,展示了IOUtils.lsFiles()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。IOUtils.lsFiles()方法的具体详情如下:
包路径:edu.illinois.cs.cogcomp.core.io.IOUtils
类名称:IOUtils
方法名:lsFiles

IOUtils.lsFiles介绍

[英]List the files contained in a directory.
[中]列出目录中包含的文件。

代码示例

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-core-utilities

  1. /**
  2. * List the files contained in a directory.
  3. */
  4. public static String[] lsFiles(String directory) throws IOException {
  5. return lsFiles(directory, new FilenameFilter() {
  6. @Override
  7. public boolean accept(File dir, String name) {
  8. return true;
  9. }
  10. });
  11. }

代码示例来源:origin: CogComp/cogcomp-nlp

  1. /**
  2. * List the files contained in a directory.
  3. */
  4. public static String[] lsFiles(String directory) throws IOException {
  5. return lsFiles(directory, new FilenameFilter() {
  6. @Override
  7. public boolean accept(File dir, String name) {
  8. return true;
  9. }
  10. });
  11. }

代码示例来源:origin: edu.illinois.cs.cogcomp/saul-examples

  1. private void readPropbankFrameData(String dir) throws Exception {
  2. frameData = new HashMap<>();
  3. DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
  4. dbf.setNamespaceAware(false);
  5. dbf.setValidating(false);
  6. for (String file : IOUtils.lsFiles(dir, (dir1, name) -> name.endsWith("xml"))) {
  7. // IOUtils.getFileName(file) doesn't work in Windows
  8. int slashIndex = file.lastIndexOf(File.separator);
  9. String fileName = file.substring(slashIndex + 1);
  10. // A hack to deal with percent-sign in nombank. There is another
  11. // file called perc-sign that will fill this void.
  12. if (fileName.contains("percent-sign.xml"))
  13. continue;
  14. DocumentBuilder db = dbf.newDocumentBuilder();
  15. Document doc = db.parse(file);
  16. NodeList predicateElements = doc.getElementsByTagName("predicate");
  17. for (int i = 0; i < predicateElements.getLength(); i++) {
  18. String lemma = IOUtils.stripFileExtension(fileName);
  19. FrameData fData = new FrameData(lemma);
  20. frameData.put(lemma, fData);
  21. NodeList roleSets = doc.getElementsByTagName("roleset");
  22. addRoleSets(fileName, lemma, fData, roleSets);
  23. }
  24. }
  25. }

代码示例来源:origin: edu.illinois.cs.cogcomp/saul-examples

  1. String[] files;
  2. try {
  3. files = IOUtils.lsFiles(dataFolder);
  4. } catch (Exception e) {
  5. e.printStackTrace();

代码示例来源:origin: CogComp/cogcomp-nlp

  1. inFiles = IOUtils.lsFiles(inDir);
  2. } catch (IOException e) {
  3. e.printStackTrace();

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-corpusreaders

  1. inFiles = IOUtils.lsFiles(inDir);
  2. } catch (IOException e) {
  3. e.printStackTrace();

代码示例来源:origin: edu.illinois.cs.cogcomp/esrl-core

  1. files = IOUtils.lsFiles(directory, new FilenameFilter() {
  2. @Override
  3. public boolean accept(File dir, String name) {

代码示例来源:origin: CogComp/cogcomp-nlp

  1. /**
  2. * A table is built from either a given source corpus file or source corpus directory by simply
  3. * counting the number of times that each form-POS association appear in a source corpus.
  4. *
  5. * @param home file name or directory name of the source corpus
  6. * @throws Exception
  7. **/
  8. public void buildTable(String home) throws Exception {
  9. if (IOUtils.isFile(home))
  10. this.buildTableHelper(home);
  11. else if (IOUtils.isDirectory(home)) {
  12. String[] files = IOUtils.lsFiles(home);
  13. for (String file : files) {
  14. // logger.info(file);
  15. this.buildTableHelper(home + "\\" + file);
  16. }
  17. }
  18. }

代码示例来源:origin: CogComp/cogcomp-nlp

  1. /**
  2. * A table is built from either a given source corpus file or source corpus directory by
  3. * counting the number of times that each suffix-POS association in a source corpus.
  4. *
  5. * @param home file name or directory name of the source corpus
  6. * @throws Exception
  7. **/
  8. public void buildTable(String home) throws Exception {
  9. if (IOUtils.isFile(home))
  10. this.buildTableHelper(home);
  11. else if (IOUtils.isDirectory(home)) {
  12. String[] files = IOUtils.lsFiles(home);
  13. for (String file : files) {
  14. // logger.info(file);
  15. this.buildTableHelper(home + "\\" + file);
  16. }
  17. }
  18. }

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-edison

  1. /**
  2. * A table is built from either a given source corpus file or source corpus directory by
  3. * counting the number of times that each suffix-POS association in a source corpus.
  4. *
  5. * @param home file name or directory name of the source corpus
  6. * @throws Exception
  7. **/
  8. public void buildTable(String home) throws Exception {
  9. if (IOUtils.isFile(home))
  10. this.buildTableHelper(home);
  11. else if (IOUtils.isDirectory(home)) {
  12. String[] files = IOUtils.lsFiles(home);
  13. for (String file : files) {
  14. // logger.info(file);
  15. this.buildTableHelper(home + "\\" + file);
  16. }
  17. }
  18. }

代码示例来源:origin: edu.illinois.cs.cogcomp/illinois-edison

  1. /**
  2. * A table is built from either a given source corpus file or source corpus directory by simply
  3. * counting the number of times that each form-POS association appear in a source corpus.
  4. *
  5. * @param home file name or directory name of the source corpus
  6. * @throws Exception
  7. **/
  8. public void buildTable(String home) throws Exception {
  9. if (IOUtils.isFile(home))
  10. this.buildTableHelper(home);
  11. else if (IOUtils.isDirectory(home)) {
  12. String[] files = IOUtils.lsFiles(home);
  13. for (String file : files) {
  14. // logger.info(file);
  15. this.buildTableHelper(home + "\\" + file);
  16. }
  17. }
  18. }

相关文章