This question already has an answer here:
- How to parse JSON in Java 31 answers
I just need 2 data on json ,but I could not.How do I access the data with the use of an "if"?
JSONArray JA = new JSONArray(textview);
for (int i = 0; i < JA.length(); i++) {
JSONObject JO = (JSONObject) JA.get(i);
singleParsed = "" + JO.get("name") + "" +
"/" + JO.get("code") + "\n" + "\n" +
"Alış Fiyatı:" + JO.get("buyPrice") + "\n" +
"Satış Fiyatı:" + JO.get("sellPrice") + "\n" +
"En d. alış fiyatı:" + JO.get("todayLowestBuyPrice") + "\n" +
"En y. alış fiyatı:" + JO.get("todayHighestBuyPrice") + "\n" +
"En d. satış fiyatı:" + JO.get("todayLowestSellPrice") + "\n" +
"En y. satış fiyatı:" + JO.get("todayHighestSellPrice") + "\n" +
"Dünkü alım fiyatı:" + JO.get("yesterdayClosingBuyPrice") + "\n" +
"Dünkü Satış fiyatı:" + JO.get("yesterdayClosingSellPrice") + "\n" +
"Günlük değişim:" + "" + JO.get("dailyChange") + "\n" +
"Güncellenme Tarihi:" + JO.get("lastUpdateDate") + "\n";
dataParsed = dataParsed + singleParsed + "\n" +
"-----------------------------------------------------------------" + "\n";
}
}
Aucun commentaire:
Enregistrer un commentaire