1
我正在使用Google Spreadsheets API 3.0.0 Java庫。我想將一個新的數據集添加到現有的工作表中,以便將新數據附加到舊數據中。有沒有可能的API來達到這個要求?Google Spreadsheets API如何使用新數據集更新(追加)現有電子表格數據
感謝, Chanaka
我正在使用Google Spreadsheets API 3.0.0 Java庫。我想將一個新的數據集添加到現有的工作表中,以便將新數據附加到舊數據中。有沒有可能的API來達到這個要求?Google Spreadsheets API如何使用新數據集更新(追加)現有電子表格數據
感謝, Chanaka
什麼你的建議似乎是它可以通過添加行現有的電子表格簡單地完成。
// Fetch the list feed of the worksheet.
URL listFeedUrl = worksheet.getListFeedUrl();
ListFeed listFeed = service.getFeed(listFeedUrl, ListFeed.class);
// Create a local representation of the new row.
ListEntry row = new ListEntry();
row.getCustomElements().setValueLocal("firstname", "Joe");
row.getCustomElements().setValueLocal("lastname", "Smith");
row.getCustomElements().setValueLocal("age", "26");
row.getCustomElements().setValueLocal("height", "176");
// Send the new row to the API for insertion.
row = service.insert(listFeedUrl, row);