当我运行以下代码时......
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
我不明白为什么。
答案 0 :(得分:14)
您导入了错误的类。变化
import org.json.JSONObject;
到
import org.json.simple.JSONObject;
答案 1 :(得分:1)
将您的代码更改为:
org.json.simple.JSONObject jsonObject = null;
JSONParser parser=new JSONParser(); // this needs the "json-simple" library
try
{
Object obj = parser.parse(responseBody);
jsonObject=(org.json.simple.JSONObject)obj;
}
catch(Exception ex)
{
Log.v("TEST","Exception1: " + ex.getMessage());
}
或者如果您只使用org.json.simple
库来解析json字符串,那么只需导入org.json.simple.*
而不是org.json.JSONObject