Question

Using Java is there an easy way to check whether a given file conforms to json format?

Using gson, the best i can do is:

private final JsonParser parser = new JsonParser();
jsonElement = parser.parse(new FileReader(fileName));

    if (jsonElement.isJsonObject()) {
        return true;
    } else {
        return false;
    }

Any cleaner ideas?

Was it helpful?

Solution

Gson will throw JsonParseException if the JSON is not parseable. You just have to catch that with JsonParser#parse() in the try.

try {
    new JsonParser().parse(jsonSource);
    // Valid.
} catch (JsonParseException e) {
    // Invalid.
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top