How to convert a scala.List to a java.util.List?
问题 How to convert Scala's scala.List into Java's java.util.List ? 回答1: Scala List and Java List are two different beasts, because the former is immutable and the latter is mutable. So, to get from one to another, you first have to convert the Scala List into a mutable collection. On Scala 2.7: import scala.collection.jcl.Conversions.unconvertList import scala.collection.jcl.ArrayList unconvertList(new ArrayList ++ List(1,2,3)) From Scala 2.8 onwards: import scala.collection.JavaConversions._