Untitled
Anonymous
java
10/22/2020 9:45 AM
228 B
44
Indexable
try(BufferedReader in = new BufferedReader(new FileReader(pathname))) {
String line;
while ((line = in.readLine()) != null) {
// process line here.
}
}Editor is loading...