当前位置: 首页>>代码示例>>Java>>正文


Java FileUtils.classpathStream方法代码示例

本文整理汇总了Java中org.gbif.utils.file.FileUtils.classpathStream方法的典型用法代码示例。如果您正苦于以下问题:Java FileUtils.classpathStream方法的具体用法?Java FileUtils.classpathStream怎么用?Java FileUtils.classpathStream使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.gbif.utils.file.FileUtils的用法示例。


在下文中一共展示了FileUtils.classpathStream方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: readBlacklist

import org.gbif.utils.file.FileUtils; //导入方法依赖的package包/类
private static Stream<String> readBlacklist(URI source) {
  Set<String> blacks = Sets.newHashSet();
  try {
    InputStream stream;
    if (source.isAbsolute()) {
      stream = source.toURL().openStream();
    } else {
      stream = FileUtils.classpathStream(source.toString());
    }
    LineIterator lines = FileUtils.getLineIterator(stream);
    while (lines.hasNext()) {
      String line = lines.nextLine();
      // comment?
      if (line.startsWith("#")) continue;
      blacks.add(line.split("\t", 2)[0]);
    }
  } catch (IOException e) {
    LOG.error("Blacklist could not be read", e);
  }
  return blacks.stream();
}
 
开发者ID:gbif,项目名称:checklistbank,代码行数:22,代码来源:NubBuilder.java

示例2: load

import org.gbif.utils.file.FileUtils; //导入方法依赖的package包/类
/**
 *
 * @param con open postgres! connection
 * @param folder the classpath folder to scan for table data files
 * @param truncate if true first truncates the tables
 * @throws Exception
 */
public static void load(Connection con, String folder, boolean truncate) throws Exception {
    con.setAutoCommit(false);
    LOG.info("Load data from " + folder);
    CopyManager copy = ((PGConnection)con).getCopyAPI();
    List<String> tables = listTables(folder);
    if (truncate) {
        truncate(con, tables);
    }
    con.commit();

    for (String table : tables) {
        LOG.debug("Load table " + table);
        InputStreamWithoutHeader in = new InputStreamWithoutHeader(FileUtils.classpathStream(folder + "/" + table + FILE_SUFFIX), '\t', '\n');
        String header = HEADER_JOINER.join(in.header);
        copy.copyIn("COPY " + table + "(" + header + ") FROM STDOUT WITH NULL '\\N'", in);
    }
    con.commit();
}
 
开发者ID:gbif,项目名称:checklistbank,代码行数:26,代码来源:DbLoader.java


注:本文中的org.gbif.utils.file.FileUtils.classpathStream方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。