Android JSON Kullanımı

String s = "http://www.testandroid.com/getfiles";
URL urls;

try {
urls = new URL(s);
URLConnection tc = urls.openConnection();
BufferedReader in = new BufferedReader(new InputStreamReader(tc.getInputStream()));
String line;
while ((line = in.readLine()) != null) {

//JSON dan gelen ifade array ise bu sekilde kullanilir
JSONArray ja = new JSONArray(line);
for (int i = 0; i < ja.length(); i++) {
JSONObject c = ja.getJSONObject(i);
String fileName = c.getString("FileName");
String fileDate = c.getString("FileDate");
Dosya doc = new Dosya(fileName, fileDate);
flList.add(doc);
}

// JSON dan tek bir satır geliyorsa kullanım şekli aşağıdaki gibidir.

JSONObject c =new JSONObject("columnName");
}
}
catch (Exception e) {

}

« »