29 votes

Comment sérialisez-vous une carte en JSON en Scala ?

Alors j'ai une Map en Scala comme ceci :

val m = Map[String, String](
    "a" -> "theA",
    "b" -> "theB",
    "c" -> "theC",
    "d" -> "theD",
    "e" -> "theE"
)

et je veux sérialiser cette structure dans une chaîne JSON en utilisant lift-json.

Est-ce que l'un d'entre vous sait comment faire cela ?

37voto

Raja Points 403

Si vous utilisez Scala 2.10.x et version ultérieure :

println(scala.util.parsing.json.JSONObject(m))

28voto

Que diriez-vous de ceci ?

implicit val formats = net.liftweb.json.DefaultFormats
import net.liftweb.json.JsonAST._
import net.liftweb.json.Extraction._
import net.liftweb.json.Printer._
val m = Map[String, String](
    "a" -> "theA",
    "b" -> "theB",
    "c" -> "theC",
    "d" -> "theD",
    "e" -> "theE"
)
println(compact(render(decompose(m))))

sortie :

{"e":"theE","a":"theA","b":"theB","c":"theC","d":"theD"}

MODIFIER :

Pour une scala.collections.mutable.Map, vous devriez d'abord la convertir en une map immutable : .toMap

9voto

arbingersys Points 48

Vous pouvez facilement le personnaliser (yay, aucune dépendance). Celui-ci gère les types de base et effectuera une récursion contrairement à JSONObject qui a été mentionné :

import scala.collection.mutable.ListBuffer

object JsonConverter {
  def toJson(o: Any) : String = {
    var json = new ListBuffer[String]()
    o match {
      case m: Map[_,_] => {
        for ( (k,v) <- m ) {
          var key = escape(k.asInstanceOf[String])
          v match {
            case a: Map[_,_] => json += "\"" + key + "\":" + toJson(a)
            case a: List[_] => json += "\"" + key + "\":" + toJson(a)
            case a: Int => json += "\"" + key + "\":" + a
            case a: Boolean => json += "\"" + key + "\":" + a
            case a: String => json += "\"" + key + "\":\"" + escape(a) + "\""
            case _ => ;
          }
        }
      }
      case m: List[_] => {
        var list = new ListBuffer[String]()
        for ( el <- m ) {
          el match {
            case a: Map[_,_] => list += toJson(a)
            case a: List[_] => list += toJson(a)
            case a: Int => list += a.toString()
            case a: Boolean => list += a.toString()
            case a: String => list += "\"" + escape(a) + "\""
            case _ => ;
          }
        }
        return "[" + list.mkString(",") + "]"
      }
      case _ => ;
    }
    return "{" + json.mkString(",") + "}"
  }

  private def escape(s: String) : String = {
    return s.replaceAll("\"" , "\\\\\"");
  }
}

Vous pouvez le voir en action comme suit :

println(JsonConverter.toJson(
    Map("a"-> 1,
        "b" -> Map(
            "nes\"ted" -> "yeah{\"some\":true"),
            "c" -> List(
                1,
                2,
                "3",
                List(
                    true,
                    false,
                    true,
                    Map(
                        "1"->"two",
                        "3"->"four"
                    )
                )
            )
        )
    )
)

{"a":1,"b":{"nes\"ted":"yeah{\"some\":true"},"c":[1,2,"3",[true,false,true,{"1":"two","3":"four"}]]}

(Il fait partie d'une bibliothèque Coinbase GDAX que j'ai écrite, voir util.scala)

6voto

Haimei Points 328

Vous pouvez utiliser cette méthode simple si vous utilisez le framework play :

import play.api.libs.json._

Json.toJson()

2voto

robert Points 1163

Ce code convertira de nombreux objets différents et ne nécessite pas de bibliothèques autres que la scala.util.parsing.json._ intégrée. Il ne gérera pas correctement des cas particuliers comme des Maps avec des entiers comme clés.

import scala.util.parsing.json.{JSONArray, JSONObject}
def toJson(arr: List[Any]): JSONArray = {
  JSONArray(arr.map {
    case (innerMap: Map[String, Any]) => toJson(innerMap)
    case (innerArray: List[Any])      => toJson(innerArray)
    case (other)                      => other
  })
}
def toJson(map: Map[String, Any]): JSONObject = {
  JSONObject(map.map {
    case (key, innerMap: Map[String, Any]) =>
      (key, toJson(innerMap))
    case (key, innerArray: List[Any]) =>
      (key, toJson(innerArray))
    case (key, other) =>
      (key, other)
  })
}

Prograide.com

Prograide est une communauté de développeurs qui cherche à élargir la connaissance de la programmation au-delà de l'anglais.
Pour cela nous avons les plus grands doutes résolus en français et vous pouvez aussi poser vos propres questions ou résoudre celles des autres.

Powered by:

X