How to parse JSON from String?

How do I parse a JSON string in scala?

  • I'm trying to just use the native library code. This doesn't work, but I don't see why - it's valid JSON: scala> scala.util.parsing.json.JSON.parseFull("{a:'1'}") res1: Option[Any] = None I've seen other libraries like scala-json on github, but I don't want to include a bunch of other code if the standard library already has it built in.

  • Answer:

    The JSON parser in the Scala library was a short project by Derek Chen-Becker.  It's no longer really supported.  The best JSON implementation on Scala is the lift-json libraries.

David Pollak at Quora Visit the source

Was this solution helpful to you?

Other answers

Hey Luke. {a:  '1'} is not valid JSON for a couple of reasons, from what I can tell: a needs to be a string ("a") and you need to use double quotes for "1". Try: scala> scala.util.parsing.json.JSON.parseFull("""{"a":1}""") res2: Option[Any] = Some(Map(a -> 1.0))

Jeff Hammerbacher

I have started hacking away using the Scala JSON toolkit https://github.com/stevej/scala-json It was originally from the Odersky "Stairway" Book, and @stevej tightened it up also using spec tests added by Twitter, Inc.

Joe Stein

You can try with Genson, see the http://owlike.github.io/genson/Documentation/ScalaGuide/. It just works, is easy to use and fast and comes with a rich set of features. It integrates also with libraries like jodatime and json4s if you want to use its DOM API (JObject/Array etc). As you can see the code to write is really minimal (no sily implicits everywhere or whatever): // Import the default preconfigured Genson instance or provide a custom one import com.owlike.genson.defaultGenson_ val json = toJson(Person("foo", 99)) val person = fromJson[Person]("""{"name": "foo", "age": 99}""") case class Person(name: String, age: Int)

Eugen Cepoi

As in java I am using Jackson to marshal json to class. For that you need to register ScalaModule to your json instance in order to support Scala collections and case classes

Kfir Bloch

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.