Hi. I am trying to use Gson to read big JSON files. Suppose I have this:
{
thing: { huge object here },
something: { huge object here },
somethingElse: 23
}
I want to use the JsonReader to stream the file. I need the "somethingElse" node first, so I need to skip over "thing" and "something", but then come back to the beggining of "something" to read it.
Is there any way to get a Reader (which JsonReader needs) that features random access of a file?
Thank you.