json - Android JSONArray looping -
This is a result I'm getting from a webservice
"year" : ["2014", "2013", "2012", "2011", "2010", "2009", "2008", "2007", "2006", "2005", "2004", "2003" "2002", "2001", "2000", "1999", "1998", "1997", "1996", "1995", "1994", "1993", "1992", "1991", "1990 "," 1989 "," 1988 "," 1987 "," 1986 "," 1985 "," 1984 "," 1983 "," 1982 "," 1981 "," 1980 "," 1979 "," 1978 ", "1977", "1976", "1975", "1974", "1973", "1972", "1971", "1970", "1969", "1968", "1967", "1966", "1965 "," 1964 "," 1963 "," 1962 "," 1961 "," 1960 "," 1959 "," 1958 "," 1957 "," 1956 "," 1955 "," 1954 "," 1953 ", "1952", "1951", "1950", "1948", "1941", "1940", "1938", "1933", "1928 "]
likes loops in activity and showing listings is. So I wrote the following
JSONArray ar = obj.getJSONArray ("year"); (I = 0; i & lt; ar.length (); i ++) {// How to get the value of the item in the array / I tried [i]}
How to get the price of items in my suspense array? I need a listing like this 2014,2013,2012 ....
Please give me an idea
Try it ..
you ar.getString (i)
JSONArray ar = get the obj can do. GetJSONArray ("year"); For (i = 0; i & lt; ar.length (); i ++) {log. V ("result -", "" + ar.getString (i)); }
Comments
Post a Comment