本文整理汇总了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();
}
示例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();
}