Hactar
Hactar

Reputation: 154

Java CSON parser?

Is there already a CSON parser for Java? JSON is very difficult to hand-write (which I will be doing a lot of for this project) and I would rather not make my own CSON parser.

If not, is there another easy-to-use alternative to JSON that there is Java support for? The major reason I would like to avoid JSON is that I will be dealing with rather large multiline strings.

EDIT: I am referring to CoffeeScript Object Notation, not Cursive Script Object Notation.

Upvotes: 1

Views: 424

Answers (1)

Hactar
Hactar

Reputation: 154

YAML is supported by a ton of languages including Java and is very friendly with multiline strings.

Upvotes: 0

Related Questions