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?
feedback
|
(or Note that this may leave the file opened, so you’ll probably have to do:
Edit: If you need to load a specific encoding, you may want to use the fact that
or, you may use a String as a second parameter, specifying a java.nio.charset.Charset:
Thus, for 8 bit binary data, it may be appropriate to use something like:
and for UTF-8 data, it would be
| |||||||||||||
feedback
|
|
This should work (Scala 2.8):
| |||
|
feedback
|
| |||
|
feedback
|