Skip to content

Instantly share code, notes, and snippets.

@gkthiruvathukal
Created August 5, 2015 15:14
Show Gist options
  • Select an option

  • Save gkthiruvathukal/ce216cc833c085faa8b7 to your computer and use it in GitHub Desktop.

Select an option

Save gkthiruvathukal/ce216cc833c085faa8b7 to your computer and use it in GitHub Desktop.
import java.nio.file._
val p = FileSystems.getDefault().getPath(".", "filename.txt")
val text = Files.readAllLines(p)
val joined = String.join("\n", text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment