8 lines
125 B
Text
8 lines
125 B
Text
|
|
InputStream in = new BufferedInputStream(new FileInputStream(path));
|
|
try {
|
|
readFile(in);
|
|
} finally {
|
|
in.close();
|
|
}
|
|
|