Android JSONArray looping

This is the result I get from 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","1949","1948","1941","1940","1938","1933","1928"]

I would like this to be included in the action and show the listing. So I wrote the following

JSONArray ar=obj.getJSONArray("year");
for(i=0;i<ar.length();i++){
    // How to get the value of the item in array
    // Tried ar[i] 
}

My doubt is how to get the value of an element in an array? I need a list like this 2014,2013,2012 ....

Please give me an idea. Thanks.

+3
source share
2 answers

Try it.

You can get both ar.getString(i)

JSONArray ar=obj.getJSONArray("year");
for(i=0;i<ar.length();i++){
    Log.v("Result--",""+ar.getString(i));
}
+9
source

Use JSONArray.optIntto get values ​​from JSONArray as:

JSONArray ar=obj.getJSONArray("year");
for(i=0;i<ar.length();i++){
    // How to get the value of the item in array
    int year=ar.optInt(i);
}
+1
source

All Articles