Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save GaneshSamarthyam/02f669b5a13e9dc8ac5844b9bbf94978 to your computer and use it in GitHub Desktop.
Save GaneshSamarthyam/02f669b5a13e9dc8ac5844b9bbf94978 to your computer and use it in GitHub Desktop.
Simplified readListStringsFromCSVFile
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