I'm wondering if anyone knows of any popular Java libraries for creating and parsing JSON strings the way it's done in Javascript. I'm not looking for a mapping library or anything of that sort. I'm starting to think that working with JSON the way Javascript works might be a better alternative.
I'm looking for something that has a builder pattern for creating JSON (since we don't have multiline strings), and a way to extract elements using simple strings for the keys and also supports easily deep "linking" into the JSON string.
Thanks in advance.