通过谷歌驱动器从文件选择器获取正确的Uri

时间:2017-07-10 13:01:49

标签: android google-drive-api uri

所以这是我的问题,我需要在手机中获取一个文件,然后将其上传到我的解析服务器。我已经为文档,下载,外部,媒体文件夹做了文件选择器,但是android文件选择器也提出了GoogleDrive选项。所以我得到了Uri,但我无法找到一种方法来访问#34;本地副本?"。

我是否需要使用GoogleDrive SDK才能访问它?或者,android能够足够聪明并给我方法来处理这个Uri吗?

我成功获取文件名。

content://com.google.android.apps.docs.storage/document/

这是我的文件选择器和处理程序:

public static void pick(final Controller controller) {
        final Intent chooseFileIntent = new Intent(Intent.ACTION_GET_CONTENT);
        chooseFileIntent.setType("application/pdf");
        chooseFileIntent.addCategory(Intent.CATEGORY_OPENABLE);
        if (chooseFileIntent.resolveActivity(controller.getContext().getPackageManager()) != null) {
            controller.startActivityForResult(chooseFileIntent, Configuration.Request.Code.Pdf.Pdf);
        }
    }

    private static boolean isExternalStorageDocument(Uri uri) {
        return "com.android.externalstorage.documents".equals(uri.getAuthority());
    }

    private static boolean isDownloadsDocument(Uri uri) {
        return "com.android.providers.downloads.documents".equals(uri.getAuthority());
    }

    private static boolean isMediaDocument(Uri uri) {
        return "com.android.providers.media.documents".equals(uri.getAuthority());
    }

    private static boolean isGooglePhotosUri(Uri uri) {
        return "com.google.android.apps.photos.content".equals(uri.getAuthority());
    }

    private static boolean isGoogleDriveUri(Uri uri) {
        return "com.google.android.apps.docs.storage".equals(uri.getAuthority());
    }

    private static String getDataColumn(Context context, Uri uri, String selection, String[] selectionArgs) {
        Cursor cursor = null;
        final String column = "_data";
        final String[] projection = { column };
        try {
            cursor = context.getContentResolver().query(uri, projection, selection, selectionArgs, null);
            if (cursor != null && cursor.moveToFirst()) {
                final int index = cursor.getColumnIndexOrThrow(column);
                return cursor.getString(index);
            }
        } finally {
            if (cursor != null)
                cursor.close();
        }
        return null;
    }

    private static String getPath(Context context, Uri uri) {
        if (DocumentsContract.isDocumentUri(context, uri)) {
            if (isExternalStorageDocument(uri)) {
                final String docId = DocumentsContract.getDocumentId(uri);
                final String[] split = docId.split(":");
                final String type = split[0];

                if ("primary".equalsIgnoreCase(type)) {
                    return Environment.getExternalStorageDirectory() + "/" + split[1];
                }
            } else if (isGoogleDriveUri(uri)) {
//                Cursor cursor = context.getContentResolver().query(uri, null, null, null, null);
//                if (cursor != null) {
//                    int fileNameIndex = cursor.getColumnIndex(OpenableColumns.DISPLAY_NAME);
//                    cursor.moveToFirst();
//                    Log.d("=== TAG ===", cursor.getString(fileNameIndex));
//                    Log.d("=== TAG ===", uri.getPath());
//                    cursor.close();
//                }
            } else if (isDownloadsDocument(uri)) {
                final String id = DocumentsContract.getDocumentId(uri);
                final Uri contentUri = ContentUris.withAppendedId(Uri.parse("content://downloads/public_downloads"), Long.valueOf(id));
                return getDataColumn(context, contentUri, null, null);
            } else if (isMediaDocument(uri)) {
                final String docId = DocumentsContract.getDocumentId(uri);
                final String[] split = docId.split(":");
                final String type = split[0];
                Uri contentUri = null;
                if ("image".equals(type)) {
                    contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;
                } else if ("video".equals(type)) {
                    contentUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI;
                } else if ("audio".equals(type)) {
                    contentUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
                }
                final String selection = "_id=?";
                final String[] selectionArgs = new String[] {split[1]};
                return getDataColumn(context, contentUri, selection, selectionArgs);
            }
        }
        else if ("content".equalsIgnoreCase(uri.getScheme())) {
            if (isGooglePhotosUri(uri))
                return uri.getLastPathSegment();
            return getDataColumn(context, uri, null, null);
        }
        else if ("file".equalsIgnoreCase(uri.getScheme())) {
            return uri.getPath();
        }
        return null;
    }

    public static void upload(final Context context, final String name, final ParseObject dataSource, final String field, final Uri uri, final Handler handler) {
        if (context != null && name != null && dataSource != null && field != null && uri != null) {
            String path = getPath(context, uri);
            if (path != null) {
                final File file = new File(path);
                dataSource.put(field, new ParseFile(file));
                dataSource.getParseFile(field).saveInBackground(new SaveCallback() {
                    @Override
                    public void done(ParseException e) {
                        if (e == null) {
                            if (handler != null) {
                                handler.success();
                            }
                        }
                    }
                }, new ProgressCallback() {
                    @Override
                    public void done(Integer percentDone) {
                        if (handler != null) {
                            handler.progress(percentDone);
                        }
                    }
                });
            }
        }
    }

编辑:

我做了一些尝试但删除临时文件时遇到了问题 这是我的代码:

public static void copyFile(final Context context, final Uri uri, final ParseObject dataSource, final String field, final String name, final Data.Source target, final Handler handler) {
        new AsyncTask<Void, Void, Boolean>() {
            @Override
            protected Boolean doInBackground(Void... params) {
                try {
                    InputStream inputStream = context.getContentResolver().openInputStream(uri);
                    if (inputStream != null) {
                        ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream();
                        byte[] bytes = new byte[1024];
                        int length;
                        while ((length = inputStream.read(bytes)) != -1)  {
                            byteArrayOutputStream.write(bytes, 0, length);
                        }
                        dataSource.put(field, new ParseFile(name, byteArrayOutputStream.toByteArray()));
                        byteArrayOutputStream.close();
                        inputStream.close();
                        return true;
                    } else {
                        return false;
                    }
                } catch (IOException e) {
                    e.printStackTrace();
                    return false;
                }
            }

            @Override
            protected void onPostExecute(final Boolean success) {
                dataSource.getParseFile(field).saveInBackground(new SaveCallback() {
                    @Override
                    public void done(ParseException e) {
                        if (e == null) {
                            if (handler != null) {
                                handler.success();
                            }
                        }
                    }
                }, new ProgressCallback() {
                    @Override
                    public void done(Integer percentDone) {
                        if (handler != null) {
                            handler.progress(percentDone);
                        }
                    }
                });
            }
        }.execute();
    }

最终编辑:

这里我的代码是正确的,临时文件被Parse自己创建并放入缓存中,所以它超出了我的范围。希望他能帮忙。

1 个答案:

答案 0 :(得分:3)

  

所以我得到了Uri,但是我找不到办法访问那个&#34;本地副本?&#34;。

没有&#34;本地副本&#34;,至少有一个可以访问的副本。

  

或者,android能够足够聪明并给我方法来处理这个Uri吗?

使用var pairs = root.Descendants() .Select(e => new { Element = e, CountElement = e.Ancestors().FirstOrDefault(a => a.Attribute("Count") != null) }); ContentResolver获取openInputStream()标识的内容InputStream。要么直接使用&#34;解析服务器&#34;,要么用它来创建临时的#34;本地副本&#34;到您控制的文件。上传该本地副本,完成后将其删除。

  

这是我的文件选择器和处理程序:

Uri没问题。 pick()可能没事;我没有用过Parse。其余的代码是垃圾,从以前的垃圾中复制。它会产生许多毫无根据,不可靠的假设,并且对于来自任意应用的upload()值不起作用(例如,通过Uri提供)。