(String[] args)
| 6 | |
| 7 | public class FileToWordsTest { |
| 8 | public static void |
| 9 | main(String[] args) throws Exception { |
| 10 | FileToWords.stream("Cheese.dat") |
| 11 | .limit(7) |
| 12 | .forEach(s -> System.out.format("%s ", s)); |
| 13 | System.out.println(); |
| 14 | FileToWords.stream("Cheese.dat") |
| 15 | .skip(7) |
| 16 | .limit(2) |
| 17 | .forEach(s -> System.out.format("%s ", s)); |
| 18 | } |
| 19 | } |
| 20 | /* Output: |
| 21 | Not much of a cheese shop really |