You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when I call JsonPath.parse(jsonText)?.read<String>("$.profile.address") it returns null. Instead return the object:
[
{
"home": "@ubuntu"
}
]
My usecase is that there is a website im scraping, which returns huge JSON, but I dont want models for all the objects. If I could get those small snippets of JSON then I would be able to serialize them into smaller more useful models.
The text was updated successfully, but these errors were encountered:
For example, I have such JSON
when I call
JsonPath.parse(jsonText)?.read<String>("$.profile.address")
it returns null. Instead return the object:My usecase is that there is a website im scraping, which returns huge JSON, but I dont want models for all the objects. If I could get those small snippets of JSON then I would be able to serialize them into smaller more useful models.
The text was updated successfully, but these errors were encountered: