import java.io.FileReader;
import org.json.simple.JSONArray;
import org.json.simple.JSONObject;
import org.json.simple.parser.*;
Object jsonObjectGeneric = new JSONParser().parse(new FileReader("/path/to/your/file.json"));
JSONObject jsonObject = (JSONObject) jsonObjectGeneric;
// String attributeValue = (String) jsonObject.get("attribute")
// JSONArray jsonArray = (JSONArray) jsonObject.get("attributeArray");