in src/main/java/com/uber/h3core/H3CoreLoader.java [45:52]
private static void copyStream(InputStream in, OutputStream out) throws IOException {
byte[] buf = new byte[4096];
int read;
while ((read = in.read(buf)) != -1) {
out.write(buf, 0, read);
}
}