java 8 stream flatmap method example

The java.util.stream is a sequence of elements supporting sequential and parallel aggregate operations.

Java 8 stream flatmap method example

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
package com.w3schools;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Arrays;
public class Test{
public static void main(String[] args) {
try {
long noOfWords = Files.lines(Paths.get("D:\\test.txt"))
.flatMap(l->Arrays.stream(l.split(" +")))
.distinct()
.count();
System.out.println("No Of Words: "+noOfWords);
} catch (Exception e) {
e.printStackTrace();
}
}
}
package com.w3schools; import java.nio.file.Files; import java.nio.file.Paths; import java.util.Arrays; public class Test{ public static void main(String[] args) { try { long noOfWords = Files.lines(Paths.get("D:\\test.txt")) .flatMap(l->Arrays.stream(l.split(" +"))) .distinct() .count(); System.out.println("No Of Words: "+noOfWords); } catch (Exception e) { e.printStackTrace(); } } }
package com.w3schools;

import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Arrays;

public class Test{  
    public static void main(String[] args) {  
    	try {
            long noOfWords = Files.lines(Paths.get("D:\\test.txt"))
                                    .flatMap(l->Arrays.stream(l.split(" +")))
                                    .distinct()
                                    .count();
            System.out.println("No Of Words: "+noOfWords);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }  
} 

Output

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
No Of Words: 2
No Of Words: 2
No Of Words: 2