【问题标题】:Upload text file to Google Drive using Android使用 Android 将文本文件上传到 Google Drive
【发布时间】:2015-05-06 11:18:31
【问题描述】:

已编辑:我已将我的文本设置为这样的字符串:

String text = ("Hello!");

我想将其转换为纯文本文件,然后上传到 Google Drive 文件夹。我已经尝试过下面的代码,但它不完整,所以我不能说会出现什么错误。

我正在使用 Google 云端硬盘“快速入门”演示,并尝试根据我的需要对其进行定制。链接:https://github.com/googledrive/android-quickstart

驱动类:

public class UploadDrive extends Activity implements ConnectionCallbacks,OnConnectionFailedListener {

 private static final String TAG = "androiddrivequickstart";
 private static final int REQUEST_CODE_CAPTURE_IMAGE = 1;
 private static final int REQUEST_CODE_CREATOR = 2;
 private static final int REQUEST_CODE_RESOLUTION = 3;
 private GoogleApiClient mGoogleApiClient;
 private Bitmap mBitmapToSave;


 private void saveFileToDrive() {
    // Start by creating a new contents, and setting a callback.
    Log.i(TAG, "Creating new contents.");
    //How to call? Can i use File from java.io?
    final Bitmap image = mBitmapToSave;
    Drive.DriveApi.newDriveContents(mGoogleApiClient).setResultCallback(new ResultCallback<DriveContentsResult>() {

        @Override
        public void onResult(DriveContentsResult 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.");
            // Get an output stream for the contents.

            OutputStream outputStream = result.getDriveContents().getOutputStream();

            // Write the bitmap data from it.
            ByteArrayOutputStream textFile = new ByteArrayOutputStream();
            //image.compress(Bitmap.CompressFormat.PNG, 100, textFile);
            try {
                outputStream.write(textFile.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("text/plain").setTitle("Log: test.txt").build();
            // Create an intent for the file chooser, and start it.
            IntentSender intentSender = Drive.DriveApi
                    .newCreateFileActivityBuilder()
                    .setInitialMetadata(metadataChangeSet)
                    .setInitialDriveContents(result.getDriveContents())
                    .build(mGoogleApiClient);
            try {
                startIntentSenderForResult(
                        intentSender, REQUEST_CODE_CREATOR, null, 0, 0, 0);
            } catch (SendIntentException e) {
                Log.i(TAG, "Failed to launch file chooser.");
            }
        }
    });
}

@Override
protected void onResume() {
    super.onResume();
    if (mGoogleApiClient == null) {
        // Create the API client and bind it to an instance variable.
        // We use this instance as the callback for connection and connection
        // failures.
        // Since no account name is passed, the user is prompted to choose.
        mGoogleApiClient = new GoogleApiClient.Builder(this)
                .addApi(Drive.API)
                .addScope(Drive.SCOPE_FILE)
                .addConnectionCallbacks(this)
                .addOnConnectionFailedListener(this)
                .build();
    }
    // Connect the client. Once connected, the camera is launched.
    mGoogleApiClient.connect();
}

@Override
protected void onPause() {
    if (mGoogleApiClient != null) {
        mGoogleApiClient.disconnect();
    }
    super.onPause();
}

@Override
protected void onActivityResult(final int requestCode, final int resultCode, final Intent data) {
    switch (requestCode) {
        case REQUEST_CODE_CAPTURE_IMAGE:
            // Called after a photo has been taken.
            if (resultCode == Activity.RESULT_OK) {
                // Store the image data as a bitmap for writing later.
                mBitmapToSave = (Bitmap) data.getExtras().get("data");
            }
            break;
        case REQUEST_CODE_CREATOR:
            // Called after a file is saved to Drive.
            if (resultCode == RESULT_OK) {
                Log.i(TAG, "Image successfully saved.");
                mBitmapToSave = null;
                // Just start the camera again for another photo.
                startActivityForResult(new Intent(MediaStore.ACTION_IMAGE_CAPTURE),REQUEST_CODE_CAPTURE_IMAGE);
            }
            break;
    }
}

@Override
public void onConnectionFailed(ConnectionResult result) {
    // Called whenever the API client fails to connect.
    Log.i(TAG, "GoogleApiClient connection failed: " + result.toString());
    if (!result.hasResolution()) {
        // show the localized error dialog.
        GooglePlayServicesUtil.getErrorDialog(result.getErrorCode(), this, 0).show();
        return;
    }
    // The failure has a resolution. Resolve it.
    // Called typically when the app is not yet authorized, and an
    // authorization
    // dialog is displayed to the user.
    try {
        result.startResolutionForResult(this, REQUEST_CODE_RESOLUTION);
    } catch (SendIntentException e) {
        Log.e(TAG, "Exception while starting resolution activity", e);
    }
}

@Override
public void onConnected(Bundle connectionHint) {
    Log.i(TAG, "API client connected.");
    if (mBitmapToSave == null) {
        // This activity has no UI of its own. Just start the camera.
        startActivityForResult(new Intent(MediaStore.ACTION_IMAGE_CAPTURE),
                REQUEST_CODE_CAPTURE_IMAGE);
        return;
    }
    saveFileToDrive();
}

@Override
public void onConnectionSuspended(int cause) {
    Log.i(TAG, "GoogleApiClient connection suspended");
}
 }

如何调用另一个名为 MainActivity 的类中的 finalResultText,以便将其转换为纯文本文件以上传到 Google Drive 文件夹?

【问题讨论】:

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


    【解决方案1】:

    假设您的问题是:“如何将文本文件上传到 Google 云端硬盘?”,以下是简要概述:

    1/ 在developers console 上获得您的应用程序授权,请参阅this。基本上,告诉谷歌你的应用程序由 SHA1/'package-name' 代表需要访问 Drive API(不要忘记你在同意屏幕上的电子邮件地址)。此授权对 REST 和 GDAA api 都有好处。

    2/ 决定是否要使用RESTGDAA API 来访问驱动器。每个人都有advantages/disadvantages(但说来话长)。

    3/ 看看REST/GDAA wrapper demo here,它在MainActivity 类中有应用程序授权过程(参见onConnFail() 方法),以及RESTGDAA 各自类中的基本CRUD 方法。

    祝你好运

    更新
    根据您下面的 cmets,我假设您想强制 QuickStart 演示为您工作。请记住,GDAA(或 REST)并不关心内容是什么,它只是一堆字节。因此,当 QuickStart 将位图转换为 PNG 并将其字节提供给输出流时,您必须使用您的一堆字节来完成。我很快将下面的 2 个原语拼凑在一起,它们将向 DriveContents 的输出流提供文件或字节数组(并且您可以将您拥有的任何内容转换为文件或字节 [])。

     DriveContents file2Cont(DriveContents driveContents, java.io.File file) {
        OutputStream oos = driveContents.getOutputStream();
        if (oos != null) try {
          InputStream is = new FileInputStream(file);
          byte[] buf = new byte[8192];
          int c = 0;
          while ((c = is.read(buf, 0, buf.length)) > 0) {
            oos.write(buf, 0, c);
            oos.flush();
          }
        } catch (Exception e)  {/*handle errors*/}
        finally {
          try {
            oos.close();
          } catch (Exception ignore) { }
        }
        return driveContents;
      }
    
      DriveContents bytes2Cont(DriveContents driveContents, byte[] buf) {
        OutputStream os = driveContents.getOutputStream();
        try { os.write(buf);
        } catch (IOException e)  {/*handle errors*/}
         finally {
          try { os.close();
          } catch (Exception e) {/*handle errors*/}
        }
        return driveContents;
      }
    

    【讨论】:

    • 我正在使用您的 gdaademo 主要活动,但它是用于相机和图像的。如何制作它以便获取文本文件?谢谢。
    • This line 由相机动作调用,并将 byte[] 缓冲区作为内容。提供字符串作为字节数组 (string.getBytes("UTF-8") 并且不要忘记在 create() here 中将 mime 类型设置为 "text/plain" (REST 而不是 GDAA)
    • 你必须先把你的文本文件变成一个字符串。或者,如果你想更深入一点,直接用你的文件引用替换 'byte buf[]' here
    • mime 类型是 UT.Mime_JPEG。所以我必须在 UT 类中改变它,对吗?所以我会改变 JPEG_EXT =".txt";和 MIME_JPEG = "text/plain"?
    • UT 只是一个“实用程序”帮助类,我用来存储所有应用程序范围的垃圾,你可以在那里修改它或硬编码它,或者......我为你指出了一个解决方案,你必须将其重新写入您的应用程序。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2023-03-23
    • 2020-03-10
    • 2015-09-13
    • 2012-12-16
    相关资源
    最近更新 更多