vote up 1 vote down star
2

Related to this question, how do convert a Java collection (java.util.List say) into a scala collection List?

EDIT; what I am actually trying to do is convert a Java API call to Spring's SimpleJdbcTemplate, which returns a java.util.List<T>, into a scala immutable HashSet. So for example:

val l: java.util.List[String] = javaApi.query( ... )
val s: HashSet[String] = //make a set from l

EDIT AGAIN. This seems to work. Criticism welcome!

import scala.collection.immutable.Set
import scala.collection.jcl.Buffer 
val s: scala.collection.Set[String] =
                      Set(Buffer(javaApi.query( ... ) ) : _ *)
flag

2 Answers

vote up 1 vote down check

Your last suggestion works, but you can also avoid using jcl.Buffer:

Set(javaApi.query(...).toArray : _*)

Note that scala.collection.immutable.Set is made available by default thanks to Predef.scala

link|flag
This suggestion doesn't work where I want to keep the type information – oxbow_lakes Mar 24 at 8:50
vote up 1 vote down

You could convert the Java collection to an array and then create a Scala list from that:

val array = java.util.Arrays.asList("one","two","three").toArray
val list = List.fromArray(array)
link|flag
This isn't great because my java.util.List is coming back out of a Java API as a parametrized list (so my call to the API yields a java.util.List<String>) - I'm trying to turn this into a scala immutable HashSet – oxbow_lakes Mar 23 at 18:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.