Scala 将JSON转换成Map
json
适用于现代 C++ 的 JSON。
项目地址:https://gitcode.com/gh_mirrors/js/json
免费下载资源
·
import net.minidev.json.parser.JSONParser
import net.minidev.json.JSONObject
import scala.collection.mutable
import scala.collection.JavaConversions.mapAsScalaMap
import scala.collection.JavaConversions.mutableMapAsJavaMap
def jsonToMap(svdInfo: String) = {
val parserJson = new JSONParser()
val jsonObj: JSONObject = parserJson.parse(svdInfo).asInstanceOf[JSONObject]
/* val tagName = jsonObj.get("tagName").toString
println("tagName===:" + tagName)*/
val jsonKey = jsonObj.keySet()
val iter = jsonKey.iterator()
val map: mutable.HashMap[String, String] = new mutable.HashMap[String, String]()
while (iter.hasNext) {
val instance = iter.next()
val value = jsonObj.get(instance).toString
// map += (instance -> value)
map.put(instance, value)
println("===key====:" + instance + "===value===:" + value)
}
map
}
def jsonToMap1(svdInfo: String) = {
val parserJson = new JSONParser()
val jsonObj: JSONObject = parserJson.parse(svdInfo).asInstanceOf[JSONObject]
/* val tagName = jsonObj.get("tagName").toString
println("tagName===:" + tagName)*/
val jsonKey = jsonObj.keySet()
val iter = jsonKey.iterator()
val map: mutable.HashMap[String, Object] = new mutable.HashMap[String, Object]()
while (iter.hasNext) {
val instance = iter.next()
val value = jsonObj.get(instance).toString
if (value.startsWith("{") && value.endsWith("}")) {
val value = mapAsScalaMap(jsonObj.get(instance).asInstanceOf[mutable.HashMap[String, String]])
map.put(instance, value)
} else map += (instance -> value)
// println("===key====:" + instance + "===value===:" + value)
}
map
}
//获取Option里的数据
def show(x: Option[Object]): Object = x match {
case Some(s) => s
case None => ""
}
GitHub 加速计划 / js / json
41.72 K
6.61 K
下载
适用于现代 C++ 的 JSON。
最近提交(Master分支:1 个月前 )
960b763e
4 个月前
8c391e04
6 个月前
更多推荐
已为社区贡献3条内容
所有评论(0)