blob: 458e331b7f8f1fd6d4eeafd3a6c2d5e1cfddad3f [file] [log] [blame]
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
class C {
void m(File file) throws IOException {
try (FileInputStream fileInputStream = new FileInputStream(file)) {
int read;
do {
read = fileInputStream.read();
System.out.println(read);
}
while (read != -1);
}
}
}