I'm trying to add two JSONArray objects together.

        JSONArray items_one;
        JSONArray items_two;
        JSONArray items_three;
        JSONArray items_four;
        items_one   = obj_one.getJSONArray("one");
        items_two   = obj_two.getJSONArray("two"); 
        items_three = obj_three.getJSONArray("three"); 
        items_four  = obj_four.getJSONArray("four"); 

        JSONArray items;
        // add all together
        items = items_one.add(items_two).add(items_three).add(items_four);

        int i;

        for (i=1;i<=items.length();i++)
        {
            Log.e(TAG, i + "/"+ items.length());
                    }

obviously this line: items = items_one.add(items_two).add(items_three).add(items_four); will not work, if anyone could assist I'd be grateful! Thanks..

link|improve this question

71% accept rate
Is the only reason for this to iterate over their contents? Or do you really want to merge them into one array? Do they all contain the same type of data? – FunkTheMonk Nov 20 '11 at 0:55
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.