I can find tons of examples but they seem to either rely mostly on Java libraries or just read characters/lines/etc.

I just want to read in some file and get a byte array with scala libraries - can someone help me with that?

link|improve this question

2  
I think relying on Java libraries is what (almost?) everyone would do, the Scala library included. See for instance the source code of scala.io.Source. – Philippe Sep 29 '11 at 13:44
1  
You're not using a different language, just a standard JVM API that has proved good enough not to need replacing! – Duncan McGregor Sep 29 '11 at 14:12
1  
Hm yeah, you are probably right... Still, it feels like cheating. :) – fgysin Sep 29 '11 at 14:21
1  
Well, how do you think the Java classes are implemented? Deep down, somewhere, there is a native method: it has just a signature, no Java implementation, and relies on an OS-specific C implementation. Isn't that cheating too? :) – Philippe Sep 29 '11 at 14:47
2  
It should be said that Scala on .Net does make this a more pressing issue. – Duncan McGregor Sep 29 '11 at 20:19
show 3 more comments
feedback

3 Answers

up vote 9 down vote accepted
scala.io.Source.fromFile(fileName).map(_.toByte).toArray

(or toArray before map?)

Note that this may leave the file opened, so you’ll probably have to do:

val source = scala.io.Source.fromFile(fileName)
val byteArray = source.map(_.toByte).toArray
source.close()

Edit: If you need to load a specific encoding, you may want to use the fact that Source.fromFile accepts a scala.io.Codec as an implicit parameter (see API):

def fromFile(name: String)(implicit codec: Codec): BufferedSource

or, you may use a String as a second parameter, specifying a java.nio.charset.Charset:

def fromFile(name: String, enc: String): BufferedSource

Thus, for 8 bit binary data, it may be appropriate to use something like:

scala.io.Source.fromFile(fileName)(scala.io.Codec.ISO8859)
// or
scala.io.Source.fromFile(fileName, "ISO-8859-1")

and for UTF-8 data, it would be

scala.io.Source.fromFile(fileName)(scala.io.Codec.UTF8)
// or
scala.io.Source.fromFile(fileName, "UTF-8")
link|improve this answer
Hmm, this does work for an ASCII text file, however when I try to read a binary file (which is the whole point) it fails, giving me: Exception in thread "main" java.nio.charset.MalformedInputException: Input length = 1 – fgysin Sep 29 '11 at 13:54
3  
Try scala.io.Source.fromFile(fileName)(scala.io.Codec.ISO8859).map(_.toByte).toArra‌​y then. – Debilski Sep 29 '11 at 13:58
@Debilski works for me. – Matthew Farwell Sep 29 '11 at 14:14
Perfect, many thanks. – fgysin Sep 29 '11 at 14:20
If you just need the bytes, doesn't this do useless char-code decoding? Wouldn't it be more efficient (albeit less functional) to use a plain Java FileInputStream? – Cristian Vrabie Apr 19 at 12:49
feedback

This should work (Scala 2.8):

val bis = new BufferedInputStream(new FileInputStream(fileName))
val bArray = Stream.continually(bis.read).takeWhile(-1 !=).map(_.toByte).toArray
link|improve this answer
feedback
val is = new FileInputStream(fileName)
val cnt = is.available
val bytes = Array.ofDim[Byte](cnt)
is.read(bytes)
is.close()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.