score:4

Accepted answer

there were some discussions on the scala mailing list on this particular matter. and, if i recall correctly, nothing concrete came out of them. in the mean time, you won't be at a loss to check out scalax. scalax.io looks very promising.

score:0

erik engbrecht's scalax fork might be useful.

score:1

i/o hasn't been addressed as yet in scala. what exists, exists solely to support the compiler and the xml library.

score:5

what about using:

source.frominputstream(is, "utf8")

as in:

for (line <- source.frominputstream(is, "utf8").getlines) {
   // process line here
}

Related Query

More Query from same tag