Untitled

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