fubai

Results 1 comments of fubai

Hi semiosis, ``` try (OutputStream output = Files.newOutputStream(path, StandardOpenOption.WRITE, StandardOpenOption.TRUNCATE_EXISTING)) { int len; byte[] buffer = new byte[8192]; while ((len = input.read(buffer, 0, 8192)) > 0) { output.write(buffer, 0, len);...