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 に答える