How to read json file into java with simple JSON library

I want to read this JSON file with java using json simple library. My JSON file looks like this: This is the java code I wrote to read this file: But I get the following exception: Exception in thread “main” java.lang.ClassCastException: org.json.simple.JSONArray cannot be cast to org.json.simple.JSONObject at javaapplication1.JavaApplication1.main(JavaApplication1.java:24) Can somebody tell me what I … Read more