当我运行以下代码时…
JSONObject jsonObject = null; JSONParser parser=new JSONParser(); // this needs the "json-simple" library try { Object obj = parser.parse(responseBody); jsonObject=(JSONObject)obj; } catch(Exception ex) { Log.v("TEST","Exception1: " + ex.getMessage()); }
…在运行时,我在日志输出中看到以下内容:
Exception1: org.json.simple.JSONObject cannot be cast to org.json.JSONObject
我不明白为什么。
您输入了错误的类。更改
import org.json.JSONObject;
至
import org.json.simple.JSONObject;