org.json.simple.JSONObject cannot be cast to org.json.JSONObject

You have imported the wrong class. Change

import org.json.JSONObject;

to

import org.json.simple.JSONObject;

Leave a Comment