无法获得DriveID&刚刚创建的文件的ResourceID

时间:2014-02-03 17:12:03

标签: android google-drive-api

我一直在关注Google的文档,在Google云端硬盘上创建一个文件夹,然后在其中创建一个jpeg文件。 How to create file

然后,我需要生成指向该文件的直接链接。我是通过以下链接执行此操作的:https://docs.google.com/uc?export = download&amp ;;id = [File ResourceID]

在光盘上创建文件。我可以使用浏览器访问它。 问题是,在onCreateFile(DriveFolder.DriveFileResult driveFileResult)回调或其他任何地方,我无法获得正确的ResourceID。

private void saveFileToDrive(final Bitmap image) {
        // Start by creating a new contents, and setting a callback.
        Log.i(TAG, "Creating new contents.");
        DriveApi.newContents(mGoogleApiClient).addResultCallback(new DriveApi.OnNewContentsCallback() {

            @Override
            public void onNewContents(final DriveApi.ContentsResult result) {
                // If the operation was not successful, we cannot do anything
                // and must fail.
                if (!result.getStatus().isSuccess()) {
                    Log.i(TAG, "Failed to create new contents.");
                    return;
                }
                // Otherwise, we can write our data to the new contents.
                Log.i(TAG, "New contents created. ID:"+result.getContents().getDriveId());
                // Get an output stream for the contents.
                OutputStream outputStream = result.getContents().getOutputStream();
                // Write the bitmap data from it.
                ByteArrayOutputStream bitmapStream = new ByteArrayOutputStream();
                image.compress(Bitmap.CompressFormat.JPEG, 100, bitmapStream);
                try {
                    outputStream.write(bitmapStream.toByteArray());
                } catch (IOException e1) {
                    Log.i(TAG, "Unable to write file contents.");
                }
                // Create the initial metadata - MIME type and title.
                // Note that the user will be able to change the title later.
                MetadataChangeSet metadataChangeSet = new MetadataChangeSet.Builder()
                        .setMimeType("image/jpeg")
                        .setTitle(ds.getFujifilmOrderID()+".jpeg")
                        .build();

                Drive.DriveApi.getFolder(mGoogleApiClient, PhotoPrintOrder.this.MyRealFontFolder).createFile(mGoogleApiClient, metadataChangeSet, result.getContents()).addResultCallback(new DriveFolder.OnCreateFileCallback() {
                    @Override
                    public void onCreateFile(DriveFolder.DriveFileResult driveFileResult) {
                        Log.d(TAG, "DriveID:"+driveFileResult.getDriveFile().getDriveId());
                        Log.d(TAG, "ResourceID:"+driveFileResult.getDriveFile().getDriveId().getResourceId());

                    }
                });
            }
        });
    }

输出如下:

  

驱动器Id:驱动器Id:CAESABiGAiCMlafg_VA =

     

ResourceID:null

如果我关闭应用程序然后重新启动它,并列出文件夹的内容,我会得到正确的值:

  

驱动器Id:CAESHDBCeXR3by1ta0hDQ0JXRzAyWjA5UFIzUmlha0UYhAIgjJWn4P1Q

     

资源ID:0Bytwo-mkHCCBWG02Z09PR3RiakE

我尝试重新连接GoogleApiClient,driveFileResult.getDriveFile()。commitAndCloseContents(),DriveApi.requestSync()。 对我来说什么都没有。

我希望得到任何可能的帮助。

2 个答案:

答案 0 :(得分:0)

requestSync异步请求同步并立即返回。它不保证同步完成,并且在同步完成之前您不能拥有非空资源ID。

答案 1 :(得分:0)

请注意,.getDriveId()方法返回 DriveId 实例,而不是String。当您将此实例与“DriveID:”连接起来时,它只使用.toString()。也许这不是你想要的。