up vote 19 down vote favorite
11
share [g+] share [fb]

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( ... ) ) : _ *)
link|improve this question

feedback

7 Answers

up vote 8 down vote accepted

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|improve this answer
4  
This suggestion doesn't work where I want to keep the type information – oxbow_lakes Mar 24 '09 at 8:50
feedback

For future reference: With Scala 2.8, it could be done like this:

import scala.collection.JavaConversions._
val list = new java.util.ArrayList[String]()
list.add("test")
val set = list.toSet

set is a scala.collection.immutable.Set[String] after this.

Also see Ben James' answer for a more explicit way (using JavaConverters), which seems to be recommended now.

link|improve this answer
Works like a charm almost every time! – pyrony Jul 18 '11 at 20:54
feedback

You may also want to explore this excellent library: scalaj-collection that has two-way conversion between Java and Scala collections. In your case, to convert a java.util.List to Scala List you can do this:

val list = new java.util.ArrayList[java.lang.String]
list.add("A")
list.add("B")
list.asScala
link|improve this answer
1  
That library is the greatest thing ever. Really really works well. – Michael Neale Oct 9 '10 at 0:16
feedback

If you want to be more explicit than the JavaConversions demonstrated in robinst's answer, you can use JavaConverters:

import scala.collection.JavaConverters._
val l = new java.util.ArrayList[java.lang.String]
val s = l.asScala.toSet
link|improve this answer
Typing in this code verbatim (yes, including the import line) produces the following in the REPL "error: value asScala is not a member of java.util.ArrayList[java.lang.String]" – robbbbbb Sep 21 '11 at 8:08
1  
Oops, I missed the ._ wildcard from the import. Fixed. – Ben James Sep 21 '11 at 9:20
feedback

You can add the type information in the toArray call to make the Set be parameterized:

 val s = Set(javaApi.query(....).toArray(new Array[String](0)) : _*)

This might be preferable as the collections package is going through a major rework for Scala 2.8 and the scala.collection.jcl package is going away

link|improve this answer
feedback

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|improve this answer
1  
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 '09 at 18:55
feedback
val array = java.util.Arrays.asList("one","two","three").toArray

val list = array.toList.map(_.asInstanceOf[String])
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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