Scala collections FAQ: How can I convert a Scala array to a String?
A simple way to convert a Scala array to a String is with the mkString method of the Array class. (Although I've written "array", the same technique also works with any Scala sequence, including Array, List, Seq, ArrayBuffer, Vector, and other sequence types.)
Here's a quick array to string example using the Scala REPL: