0
byte[] fileItemData = blobstoreService.fetchData(blobKey, 0, 999999);   
ByteArrayContent mediaContent = new ByteArrayContent(fileItemMimeType, fileItemData);
insert = driveService.files().insert(body, mediaContent);
File file = insert.execute();

-> 为什么 insert.execute() 不能捕获异常...?什么都不做。-> 当我离开“fileItemData”时,我在谷歌驱动器中得到一个项目。那么它有什么问题呢?我正在尝试上传到 Google AppEngine 并存储到 AppEngine 上的 Google Drive。

4

1 回答 1

1

您能否使用较小的数据尝试您的代码,例如:

ByteArrayContent mediaContent = ByteArrayContent.fromString("text/plain", "Hello World")
driveService.files().insert(body, mediaContent).execute();

让我知道这是否有效......

于 2012-07-17T00:08:42.207 回答