Hi,
I do like :
CellFeed batchFeed = new CellFeed();
CellEntry toUpdate = cellFeed.getEntries().get(k);
toUpdate.changeInputValueLocal(listString.get(i).get(j)
.toString());
String batchId = "R" + row + "C" + col;
BatchUtils.setBatchId(toUpdate, batchId);
BatchUtils.setBatchOperationType(toUpdate,
BatchOperationType.UPDATE);
batchFeed.getEntries().add(toUpdate);
Link batchLink = cellFeed.getLink(Link.Rel.FEED_BATCH,
Link.Type.ATOM);
spreadsheetService.setConnectTimeout(0);
CellFeed batchResultFeed = spreadsheetService.batch(new URL(
batchLink.getHref()), batchFeed);
with List, It doesn't work for me.
Maxime