Android - Google Drive API文件永远不会同步

时间:2014-12-20 21:31:51

标签: java android google-drive-api google-drive-android-api

我有一个奇怪的错误,我希望有人可以帮助我。

我正在使用Google云端硬盘应用文件夹从我的应用中备份一些数据。它创建文件并在没有问题的情况下写入我的数据,我可以随时签署从驱动器中获取文件并且工作正常。

但是,如果我在重新安装时卸载该应用,则Google云端硬盘应用文件夹为空。我假设我错过了同步过程的某些方面,因此它只在本地缓存,但我无法看到我做错了什么。我创建和提交文件的代码如下。

DriveFile file = ..//Get drive file;
file.open(mGoogleApiClient, DriveFile.MODE_WRITE_ONLY, null)
                .setResultCallback(new ResultCallback<DriveApi.DriveContentsResult>() {
                    @Override
                    public void onResult(DriveApi.DriveContentsResult result) {
                        if (!result.getStatus().isSuccess()) {
                            Log.i(TAG, "Problem opening file, status is " + result.getStatus().toString());
                            return;
                        }
                        Log.i(TAG, "File opened");
                        writeFileContents(result.getDriveContents());
                    }
                });

private void writeFileContents(final DriveContents contents) {
new AsyncTask<Object, Object, Integer>() {

            @Override
            protected Integer doInBackground(Object[] params) {
try {
                    ParcelFileDescriptor parcelFileDescriptor = contents.getParcelFileDescriptor();
                    // Overwrite the file.
                    FileOutputStream fileOutputStream = new FileOutputStream(parcelFileDescriptor
                            .getFileDescriptor());
                    Writer writer = new OutputStreamWriter(fileOutputStream);
                    SyncUtils.writeXml("some xml", writer);
                    writer.close();
                    fileOutputStream.close();
                } catch (IOException e) {
                    e.printStackTrace();
                } catch (Exception e) {
                    e.printStackTrace();
                }
                return;
            }

            @Override
        protected void onPostExecute(final Integer x) {
                contents.commit(mGoogleApiClient, null).setResultCallback(new ResultCallback<com.google.android.gms.common.api.Status>() {
                    @Override
                    public void onResult(com.google.android.gms.common.api.Status result) {
                        if(result.getStatus().isSuccess())
                            Log.i(TAG, "Write succeeded");
                        else
                            Log.i(TAG, "Write failed");
                        onConnectionCallbacks.onSynced(x);
                    }
                });
}
        }.execute();

1 个答案:

答案 0 :(得分:0)

根据documentation:before仅适用于:after。您使用的是contents.getParcelFileDescriptor(),因此您应该拨打DriveFile.MODE_READ_WRITE