我正在尝试使用 json 格式的文本并将其转换为 xml。为此,我正在使用lift-json。根据此处的 lift-json 文档(def toXml
),我应该能够使用以下方法将 json 数组的元素转换为逗号分隔的字符串:
toXml(json map {
case JField("nums",JArray(ns)) => JField("nums",JString(ns.map(_.values).mkString(",")))
case x => x
})
所以我写了以下代码:
case work: ActiveMQTextMessage =>
println("work.getText: " + work.getText)
val workAsJson: JValue = parse(work.getText)
val processedArraysJson = workAsJson map {
case JField(label, JArray(ns)) => JField(label, JString(ns.map(_.values).mkString(",")))
case x => x
}
val workAsXml: scala.xml.NodeSeq = toXml(processedArraysJson)
但由于某种原因,它无法编译。
它报告两个错误:
Error:(55, 14) constructor cannot be instantiated to expected type;
found : net.liftweb.json.JsonAST.JField
required: net.liftweb.json.JsonAST.JValue
case JField(label, JArray(ns)) => JField(label, JString(ns.map(_.values).mkString(",")))
Error:(55, 49) type mismatch;
found : net.liftweb.json.JsonAST.JField
required: net.liftweb.json.JsonAST.JValue
case JField(label, JArray(ns)) => JField(label, JString(ns.map(_.values).mkString(",")))
注意,我使用的 lift-json 版本是:
"net.liftweb" % "lift-json_2.12" % "3.0.1"
使用 Scala 2.12