A java list of bytes can be converted to sequence in Scala by utilizing
toSeq method of Java in Scala. Here, we need to import Scala’s
JavaConversions object in order to make this conversions work else an error will occur.
Now, lets see some examples and then discuss how it works in details.
Example:1#
Output:
Buffer(121, 127, 120)
Example:2#
Output:
Buffer(-124, -126, -120)