0

在我的应用程序中,我的数组大小为 400 个元素。我的任务是那些元素被发送到 webservice 进行插入。但它不受支持。所以将数组分成几部分并发送到 webservice。怎么样

4

1 回答 1

0

大概是这样的吧?

   String[] stringArray = new String[400];    
    //lets assume that the array has objects in it.   
    int index = 0;   
    for(int i = 0; i < stringArray.length; i++) {   
        String[] temp = new String[20];   
        for(int x = 0; x < 20) {   
            if(stringArray[index] != null)  temp[x] = stringArray[index];   
            index++;   
        }   
        //The temp array is filled with objects from the other array, so send it to the webservice. 
        sendArrayToWebService(temp);   
    }
于 2012-10-27T10:26:20.430 回答