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: [ { “name”:”John”, “city”:”Berlin”, “cars”:[ “audi”, “bmw” ], “job”:”Teacher” }, { “name”:”Mark”, “city”:”Oslo”, “cars”:[ “VW”, “Toyata” ], “job”:”Doctor” } ] This is the java code I wrote to read this file: package javaapplication1; import java.io.FileNotFoundException; import … Read more