responseBody
コードのこのセクションがあります (実際には Web サーバーからのものであることに注意してください)。
public JSONObject getObj(){
String responseBody = '[{"zip":"56601","city":"Bemidji","state":"MN","county":"Beltrami","dist":"0.14802"},{"zip":"56619","city":"Bemidji","state":"MN","county":"Beltrami","dist":"3.98172"}]';
JSONObject response = null;
try{
response = new JSONObject(responseBody);
}catch(JSONException ex){
Logger.getLogger(Http.class.getName()).log(Level.SEVERE, null, ex);
}
return response;
}
JSONObject が例外をスローする理由がわかりません。何がそうさせているのですか?