The JSON syntax is very simple but also very strict with names and strings. So i am looking for a JSON library that allows some relaxed syntax for strings.
Any token not startng with [0-9],:[]{}" and not is true, false or null is a valid name/string.
So that this 2 JSON are equivalent
{
"name":"Eric",
"addr":"461, Ocean Boulevard"
}
{
name:Eric,
addr:"461, Ocean Boulevard"
}
Update I googled again and found RSON for Python, something similar for Java ?