입력으로 JSONObject
을 읽고 있는데 id
의 값을 getString()
방법 net.sf.json
API를 사용하여 검색하고 있습니다.net.sf.JSONObject가 java.lang.String 예외로 변환 될 수 없습니다.
//reading the jsonObject from String
JSONObject jsonObject.fromObject(someString);
String id = jsonObject.getString("id");
if(id == null)
{
//the control is not going in this if condition
}
인쇄'id' 값) (대신에서 getString 당신이 내가 optstring이 ("ID", 널 (null))를 사용할 필요가 의미 –
인쇄 무엇 – Rekha
참조 JSONObject jsonObject.fromObject (someString); 이 코드가 작동합니까 ?? –