I am using json-spray. It appears that when I try to print the syntax value of JsString, it includes quotation marks at the end of the line.
val x1 = """ {"key1": "value1", "key2": 4} """ println(x1.asJson) println(x1.asJson.convertTo[Map[String, JsValue]])
What outputs:
{"key1":"value1","key2":4} Map(key1 -> "value1", key2 -> 4)
But this means that the string value key1 is actually quoted, since scala displays strings without their quotes. that is, val k = "value1" outputs: value1 not "value1" . Maybe I am doing something wrong, but the best I could come up with to facilitate this was as follows:
val m = x1.asJson.convertTo[Map[String, JsValue]] val z = m.map({ case(x,y) => { val ny = y.toString( x => x match { case v: JsString => v.toString().tail.init case v => v.toString() } ) (x,ny) }}) println(z)
Which displays the correctly displayed string:
Map(key1 -> value1, key2 -> 4)
But this solution will not work for recursively nested JSON. Is there a better workaround?
source share