I have this code
JSONObject obj;
try {
obj = new JSONObject(readUrl("http://dleel.ps/ss.txt"));
List<String> list = new ArrayList<String>();
JSONArray array = obj.getJSONArray("data");
for(int i = 0 ; i < array.length() ; i++) {
if (array.getJSONObject(i).getString("link")!=null)
System.out.println(array.getJSONObject(i).getString("link"));
}
}
why I am getting exception when theres no link (JSONObject["link"] not found.) , what should I put in the if condition ? also I tried using instead of getJSONArray , optJSONArray but the same