Scala Json 转化

暂且没发现特别好用的。
scala中使用json,比java中使用json复杂一些。尝试了json-smart;fast json; gson;json4s以及scala自带的json。

总结如下:

com.alibaba.fastjson.JSON.parseObject(json,
        new TypeReference[java.util.Map[String, Object]]() {})

 1. 普通json string 转化 object, 使用JSON.pareseFull 。         
JSON.parseFull(str).get.asInstanceOf[Map[String, String]]("key") 
 2. json 与 map 互相转化       
    val colors:Map[String,Object]  = Map("red" -> "123456", "azure" -> "789789")
    val json = JSONObject(colors)
    println(json)
    val jsonMap = JSON.parseFull(json.toString).get.asInstanceOf[Map[String,Object]]
    println(jsonMap)
3. json 与 class 互相转化
case class Student( name:String , no: String )
 
    val gson = new Gson
    val student = Student("张三", "100")
    val str = gson.toJson(student, classOf[Student])
    println(str)
    val student2 = gson.fromJson(str, classOf[Student])
    println(student2)
尤其注意:使用 classOf ,不能使用 getclass


4. json与Map互相转化,需使用java的map 

 val map = new util.HashMap[String, Object]()
 map.put("abc", List(s1,s2).toArray)
 val gson = new Gson()
 println( gson.toJson(map) )
另附,json判断代码

 def isGoodJson(json: String):Boolean = {
 
    if(null == json) {
      return false
    }
    val result =  JSON.parseFull(json) match {
      case Some(_:  Map[String, Any]) => true
      case None => false
      case _ => false
    }
    result
  }

你可能感兴趣的:(Scala Json 转化)