Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GaneshSamarthyam/e87b7f3456df4e2dab7e6bfbab3b5c06 to your computer and use it in GitHub Desktop.
Save GaneshSamarthyam/e87b7f3456df4e2dab7e6bfbab3b5c06 to your computer and use it in GitHub Desktop.
private static List<String> readListStringsFromCSVFile(String filePath) throws IOException {
return Files.lines(Paths.get(filePath)).collect(Collectors.toList());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment