Scala: InputStream to Array[Byte]

后端 未结 11 839
臣服心动
臣服心动 2021-02-02 06:01

With Scala, what is the best way to read from an InputStream to a bytearray?

I can see that you can convert an InputStream to char array

Source.fromInput         


        
11条回答
  •  梦谈多话
    2021-02-02 06:43

    With Scala IO, this should work:

    def inputStreamToByteArray(is: InputStream): Array[Byte] = 
       Resource.fromInputStream(in).byteArray
    

提交回复
热议问题