import java.io.*; class WithFinally { void foo(File file1, File file2) throws IOException { try (<caret>FileInputStream in = new FileInputStream(file1); FileOutputStream out = new FileOutputStream(file2)) { System.out.println(in + ", " + out); } finally { System.out.println(); } } }