Untitled

 avatar
unknown
java
6 years ago
171 B
33
Indexable
try(BufferedReader in = new BufferedReader(new FileReader(pathname))) {
    String line;
    while ((line = in.readLine()) != null) {
        // process line here.
    }
}
Editor is loading...