org.json - การจัดการ JSONException
คลาสยูทิลิตี้ของ org.json พ่น JSONException ในกรณีที่ JSON ไม่ถูกต้อง ตัวอย่างต่อไปนี้แสดงวิธีจัดการ JSONException
ตัวอย่าง
import org.json.JSONException;
import org.json.XML;
public class JSONDemo {
public static void main(String[] args) {
try{
//XML tag name should not have space.
String xmlText = "<Other Details>null</Other Details>";
System.out.println(xmlText);
//Convert an XML to JSONObject
System.out.println(XML.toJSONObject(xmlText));
} catch(JSONException e){
System.out.println(e.getMessage());
}
}
}
เอาต์พุต
position: 24
Unexpected token RIGHT BRACE(}) at position 24.