任何人都可以帮我理解出了什么问题吗?
unreported exception org.json.JSONException; must be caught or declared to be thrown
jsonObj = new JSONObject("{\"count\":3939,\"has_more\":true,\"map_location\":{\"lat\":0.60996950000000183,\"lon\":-27.568517000000003,\"panoramio_zoom\":16},\"photos\":[{\"height\":375,}]}"); //creates the JSON object from the jsonString, for parsing
^
1错误
我正在使用org.json,我想我已经正确设置了所有内容。我正在尝试使用org.json中的构造函数创建一个JSONObject,它接受一个源字符串,并且我一直得到这个异常。我不确定我发送的字符串有什么问题。谢谢
答案 0 :(得分:13)
通过创建try和catch
来捕获您的例外try {
JSONObject jsonObj = new JSONObject("{\"count\":3939,\"has_more\":true,\"map_location\":{\"lat\":0.60996950000000183,\"lon\":-27.568517000000003,\"panoramio_zoom\":16},\"photos\":[{\"height\":375,}]}");
System.out.println(jsonObj);
} catch (JSONException e) {
//some exception handler code.
}
或者向调用者方法抛出异常。
public String yourMethod(String jsonString) throws JSONException
答案 1 :(得分:2)
constructor declares to throw org.json.JSONException
所以你必须处理它(捕获和处理或重新抛出让调用者处理它)