I use a lot of scala maps, occasionally I want to pass them in as a map to a legacy java api which wants a java.util.Map (and I don't care if it throws away any changes).

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

An excellent library I have found that does a better job of this:

http://github.com/jorgeortiz85/scala-javautils

(bad name, awesome library). You explicitly invoke .asJava or .asScala depending on what direction you want to go. No surprises.

link|improve this answer
feedback

Scala provides wrappers for Java collections so that they can be used as Scala collections but not the other way around. That being said it probably wouldn't be hard to write your own wrapper and I'm sure it would be useful for the community. This question comes up on a regular basis.

link|improve this answer
I might just do that. – Michael Neale Jan 30 '09 at 9:43
feedback

This question and answer discuss this exact problem and the possible solutions. It advises against transparent conversions as they can have very strange side-effects. It advocates using scala-javautils instead. I've been using them in a large project for a few months now and have found them to be very reliable and easy to use.

link|improve this answer
I agree - the transparent conversions often cause more hassle then they save (its not a total wash, sometimes they are handy). Having Seq methods on java arrays, and eventually other collection types is kinda nice, but beyond that, I like scala-javautils. Wish I found out about it ages ago. – Michael Neale Dec 7 '09 at 22:02
feedback

Your Answer

 
or
required, but never shown

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