testing the gist for blog
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.io.FileNotFoundException; | |
import java.io.IOException; | |
import java.nio.file.Files; | |
import java.nio.file.Paths; | |
import java.util.stream.Stream; | |
public class WordCount { | |
public static void main(String[] args) throws FileNotFoundException { | |
countWords("sample.txt"); | |
} | |
/** | |
* this method count number of words from the text file and finally print the number of words * * @param fileName | |
*/ | |
public static void countWords(String fileName) { | |
try (Stream<String> stream = Files.lines(Paths.get(fileName))) { | |
long wordCount = stream.flatMap(str -> Stream.of(str.split("[ ,.!?\r\n]"))).count(); | |
System.out.println("Number of words in file : " + wordCount); | |
} catch (FileNotFoundException fnf) { | |
System.out.println("Exception Occurred" + fnf.getMessage()); | |
} catch (IOException io) { | |
System.out.println("Exception Occurred" + io.getMessage()); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment