小编典典

org.json.simple.JSONObject无法转换为org.json.JSONObject

json

当我运行以下代码时…

  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

我不明白为什么。


阅读 705

收藏
2020-07-27

共1个答案

小编典典

您输入了错误的类。更改

import org.json.JSONObject;

import org.json.simple.JSONObject;
2020-07-27