B4J Question JSONParser failing on spaces

wl

Well-Known Member
Licensed User
Longtime User
Hi,

UPDATE: I did not now what was wrong, but thanks to the JSON parser demo app of Erel I solved the issue.


Is anyone aware of issues with the JSONParser (for V4J) when the JSON contains spaces in values ?

Something like below fails because of the space between "Feature" and "Collection"

{
"type": "Feature Collection"
}

Something like this also causes troubles:

{
"type": "[Feature]"
}

It seems the parser is not honouring the double quotes ?

Thanks !
 
Last edited:
Top