1

我一直在密切关注Google Drive Android API的文档,一切都很好。我可以创建新的文本文档并使用text/plain.

我不能做的是创建一个原生的谷歌“文档”或“电子表格”。实际上,我可以通过使用 mime 类型application/vnd.google-apps.documentapplication/vnd.google-apps.spreadsheet根据Supported MIME Types文档来创建它们。

但是,如果我尝试将内容写入这些文档,则这些文档永远不会被上传。如果我尝试阅读包含内容的文档(我通过网络浏览器创建的内容),我的openContents呼叫将失败。

同样,我可以创建text/plain文档并写入它们,但它们不是本机 Google 文档。我浏览了文档和示例文件,但没有描述我正在寻找的内容。

这似乎很基本。新的 GoogleApiClient 不支持这样做吗?我错过了什么或做错了什么?

这是创建的核心代码。我在尝试阅读 a 时遇到了类似的问题,application/vnd.google-apps.document但我确信这两个问题是相关的。我将省去冗长的“阅读”代码。

private void exportToGDriveFile() {
    Drive.DriveApi.newContents(getGoogleApiClient()).setResultCallback(createNewFileCallback);
}



final private ResultCallback<ContentsResult> createNewFileCallback = new ResultCallback<ContentsResult>() {

    @Override
    public void onResult(ContentsResult result) {

        if (!result.getStatus().isSuccess()) {
            writeLog("Error while trying to create new file contents");
            return;
        }

        String fileName = getIncrementedFileName();
        MetadataChangeSet changeSet = new MetadataChangeSet.Builder()
                .setTitle(fileName)
                .setMimeType("text/plain") // <-- This works! I can write and read back :) 
                //.setMimeType("application/vnd.google-apps.document") <-- can create if no contents are included.
                //.setMimeType("application/vnd.google-apps.spreadsheet") 
                .setStarred(true)
                .build();

        writeLog("creating file: " + fileName);

        // create a file on root folder
        Drive.DriveApi.getRootFolder(getGoogleApiClient())
                .createFile(getGoogleApiClient(), changeSet, result.getContents())
                .setResultCallback(afterCreateFileCallback);
    }
};



private ResultCallback<DriveFileResult> afterCreateFileCallback = new ResultCallback<DriveFileResult>() {

    @Override
    public void onResult(DriveFileResult result) {

        if (!result.getStatus().isSuccess()) {
            writeLog("Error while trying to create the file");
            return;
        }

        DriveFile driveFile = result.getDriveFile();
        writeLog("Created file " + driveFile.getDriveId());
        new WriteFileAsyncTask().execute(driveFile);

    }
};

private class WriteFileAsyncTask extends AsyncTask<DriveFile, Void, Boolean> {

    @Override
    protected Boolean doInBackground(DriveFile... args) {

        DriveFile file = args[0];
        try {


            ContentsResult contentsResult = file.openContents(getGoogleApiClient(), DriveFile.MODE_WRITE_ONLY, null).await();
            if (!contentsResult.getStatus().isSuccess()) {
                return false;
            }


/************************
If I try to write content here, `application/vnd.google-apps.document` files will not upload.
*************************/

            String contents = "Hello World";

            OutputStream outputStream = contentsResult.getContents().getOutputStream();
            outputStream.write(contents.getBytes());
            com.google.android.gms.common.api.Status status = file.commitAndCloseContents(
                    getGoogleApiClient(), contentsResult.getContents()).await();
            return status.getStatus().isSuccess();
        } catch (IOException e) {
            // toast("IOException while appending to the output stream");
        }

        return false;
    }

    @Override
    protected void onPostExecute(Boolean result) {

        if (!result) {
            // toast("Error while editing contents");
            return;
        }
        // toast("Successfully uploaded Quizifications!");
    }

}
4

2 回答 2

1

目前无法读取或编辑 Google 文档、电子表格或演示文稿文件的内容。它们的文件是一种特殊类型,没有标准的二进制内容,因此您不能像从其他文件中读取和写入它们一样。

但是,您可以与现有文件的元数据进行交互。

很抱歉造成混淆,我们应该更新行为,以便清楚地表明这是不可能的。

于 2014-03-19T23:31:53.707 回答
0

使用 HTML 更新 Google Docs 很简单。只需在正文中使用 html 格式的文本(需要 html 标记)和 content-type 为 google docs 发出 api 请求,然后您创建/更新的文件将作为具有所有格式选项的 Google Doc 提供给用户。

           request({
             uri: 'https://www.googleapis.com/upload/drive/v2/files/'+fileId,
             method: 'PUT',
             qs: {
               uploadType: 'media'
             },
             form: '<html> Hello <b>World!</b> </html>',
             headers: {
               'Content-Type': 'application/vnd.google-apps.document',
               'Authorization': 'Bearer ' + access_token
             }},  function (error, response, body){


           })
于 2016-04-18T10:04:55.460 回答