如何将if / else用于JSON?我只想获取两个数据,而不是全部

时间:2019-06-26 12:51:28

标签: java json api if-statement

我只需要两个有关JSON的数据,但我不能。如何使用“ 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";
    }
}

0 个答案:

没有答案