在我的应用程序中,我有400个元素的数组大小。我的任务是将那些元素发送到webservice进行插入。但是它不受支持。所以将数组拆分成片并发送到webservice.How是不是
答案 0 :(得分: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);
}