I'm trying to write a list I have into a file and I'm trying to it with the foreach call, as can be done with println. this works:
list.foreach(println)
but this won't work:
val file = "whatever.txt"
val writer = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(file)))
list.foreach(writer.write)
I've tried some other ways to print to a file and in all of them had no luck, what an I doing wrong?
Here's a complete example that compiles and runs. Your code was missing close()
so everything your wrote in BufferedWriter
remained in the buffer and never reached the disk.
import java.io._
val file = "whatever.txt"
val writer = new BufferedWriter(new FileWriter(file))
List("this\n","that\n","other\n").foreach(writer.write)
writer.close()
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With