Javaのファイルコピー、特に高速化の話でよく見かける、こんなコード。 try (FileChannel srcChannel = new FileInputStream("...").getChannel(); FileChannel destChannel = new FileOutputStream("...").getChannel()) { srcChannel.transferTo(0, srcChannel.size(), destChannel); } catch (IOException e) { e.print…