varios subir studio puedo pesados permiso movil google desde descargar como celular archivos java android google-drive-sdk google-drive-android-api

java - subir - google drive android studio



Cargar archivo de texto a Google Drive con Android (1)

Suponiendo que tu pregunta es: ''¿Cómo cargo un archivo de texto a Google Drive?'', Aquí está la descripción general rápida:

1 / Obtenga su aplicación autorizada en la consola de desarrolladores , vea esto . Básicamente, dígale a Google que su aplicación representada por SHA1 / ''package-name'' necesita acceso a Drive API (no olvide su dirección de correo electrónico en la pantalla de consentimiento). Esta autorización es válida tanto para REST como para la API de GDAA.

2 / Decida si quiere usar REST o GDAA API para acceder a Drive. Cada uno tiene ventajas / desventajas (pero es una historia larga).

3 / Eche un vistazo a la demostración del contenedor REST / GDAA aquí , tiene el proceso de autorización de la aplicación en la clase MainActivity (vea el métodoConnFail ()) y los métodos CRUD básicos para REST y GDAA en sus respectivas clases.

Buena suerte

ACTUALIZAR
En función de sus comentarios a continuación, supongo que desea forzar la demostración de QuickStart para que funcione para usted. Tenga en cuenta que a GDAA (o REST) ​​no le importa cuál es el contenido. Es solo un grupo de bytes. Entonces, como QuickStart convierte el mapa de bits en PNG y alimenta el flujo de salida con sus bytes, tiene que hacerlo con su conjunto de bytes. Rápidamente uní dos primitivas a continuación, que alimentarían el flujo de salida de DriveContents con una matriz de archivos o bytes (y puedes convertir lo que tengas en un archivo o byte []).

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; }

Editado: configuré el texto en una cadena como esta:

String text = ("¡Hola!");

Quiero convertir esto en un archivo de texto plano y luego subirlo a una carpeta de Google Drive. He intentado con el siguiente código, pero no está completo, así que no puedo decir qué errores aparecen.

Estoy usando la demostración de "Inicio rápido" de Google Drive e intento adaptarla a lo que necesito. Enlace: https://github.com/googledrive/android-quickstart

DriverClass:

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"); } }

¿Cómo llamo al finalResultText que está en otra clase llamada MainActivity para que pueda convertirlo en un archivo de texto sin formato para cargarlo en una carpeta de Google Drive?