OnJava8-Examples/files/ListOfLines.java

29 lines
675 B
Java
Raw Normal View History

2015-12-06 11:45:16 -08:00
// files/ListOfLines.java
2015-12-15 11:47:04 -08:00
// (c)2016 MindView LLC: see Copyright.txt
2015-12-06 11:45:16 -08:00
// We make no guarantees that this code is fit for any purpose.
2016-09-23 13:23:35 -06:00
// Visit http://OnJava8.com for more book information.
2015-12-06 11:45:16 -08:00
import java.util.*;
import java.nio.file.*;
public class ListOfLines {
2016-01-25 18:05:55 -08:00
public static void
main(String[] args) throws Exception {
2015-12-06 11:45:16 -08:00
List<String> lines = Files.readAllLines(
Paths.get("../streams/Cheese.dat"));
for(String line : lines) {
if(line.startsWith("//"))
continue;
System.out.println(
line.substring(0, line.length()/2));
}
}
}
/* Output:
Not much of a cheese
Finest in the
And what leads you
Well, it's
It's certainly uncon
*/