【发布时间】:2014-01-15 17:16:50
【问题描述】:
我正在使用 Google Drive SDK 使用以下代码创建电子表格:
File body = new File();
body.setTitle(title);
body.setMimeType("application/vnd.google-apps.spreadsheet");
body.setParents(Arrays.asList(new ParentReference().setId(currentParent)));
File file = driveHelper.getDrive().files().insert(body).execute();
有没有办法使用 Google 电子表格 API 使用 Drive SDK 创建特定的电子表格? 我在不同的文件夹中有许多同名的电子表格,当我遍历所有电子表格时 我不想比较标题来获得特定的电子表格。
【问题讨论】:
标签: java android google-drive-api google-spreadsheet-api