I'm looking to do something like the following in Java and was wondering whether such a JSON library/helper already existed out there somewhere?
SomeJsonBuilder builder = new SomeJsonBuilder();
builder.add("one", "oneValue");
builder.add("two.three", "threeValue");
String output = builder.toString();
Such that the output string above would be something like:
{"one":"oneValue", "two":{"three":"threeValue"}}