Java library for searching text in JSON file

java, json

Solution

Gson could help you to parse the json file easily.

Unlike many other JSON libraries, Gson supports streaming which means you can examine the file in small chunks.

Problem

I would like to search after a given keyword in a big JSON file. Does anybody know a java library for this?

Original source