web-dev-qa-db-fra.com

Comment convertir une Java.util.List en une liste Scala

J'ai cette Scala avec l'erreur ci-dessous. Impossible de convertir en une liste Scala.

 def findAllQuestion():List[Question]={
   questionDao.getAllQuestions()
 } 

incompatibilité de type; a trouvé : Java.util.List[com.aitrich.learnware.model.domain.entity.Question] Champs obligatoires: scala.collection.immutable.List[com.aitrich.learnware.model.domain.entity.Question]

96
boycod3
import scala.collection.JavaConversions._

fera la conversion implicite pour vous; par exemple.:

var list = new Java.util.ArrayList[Int](1,2,3)
list.foreach{println}
66
Neil

Vous pouvez simplement convertir la liste en utilisant JavaConverters:

import scala.collection.JavaConverters._

def findAllQuestion():List[Question] = {
  questionDao.getAllQuestions().asScala
}
107
Fynn
def findAllStudentTest(): List[StudentTest] = { 
  studentTestDao.getAllStudentTests().asScala.toList
} 
26
boycod3

Importer JavaConverters, la réponse de @fynn était manquante toList

import scala.collection.JavaConverters._

def findAllQuestion():List[Question] = {
  //           Java.util.List -> Buffer -> List
  questionDao.getAllQuestions().asScala.toList
}
5
Raymond Chenon

Commencer Scala 2.13, le paquet scala.collection.JavaConverters est marqué comme obsolète en faveur de scala.jdk.CollectionConverters :

import scala.jdk.CollectionConverters._

// val javaList: Java.util.List[Int] = Java.util.Arrays.asList(1, 2, 3)
javaList.asScala.toList
// List[Int] = List(1, 2, 3)
1
Xavier Guihot