Android从Google云端硬盘获取Uri路径

前端之家收集整理的这篇文章主要介绍了Android从Google云端硬盘获取Uri路径前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这个代码文件上传到我的应用程序,当用文件管理器,dropBox或其他任何东西打开文件时,返回的路径是正确的,我可以访问它,我只是遇到谷歌驱动器的问题,它返回一些以“exposed_content”开头的路径,我不能以任何方式“解码”它,我搜索过并没有找到办法,任何人都有任何想法?
if (resultCode == Activity.RESULT_OK) {
            if ((data != null) && (data.getData() != null)) {
                final Uri filePath;
                if (data.getDataString().startsWith("content")) {
                    filePath = getRealPathFromURI(getApplicationContext(),data.getData());
                } else {
                    filePath = data.getData();
                }
                // TODO bug with google drive
                if (filePath.getLastPathSegment() != null) {
                    tvSelectedFile.setText("File selected: " + filePath.getLastPathSegment());

                } else {
                    tvSelectedFile.setText("File can not be accessed,please try another way");
                }

            }
}

解决方法

使用附加的代码…从onActivity结果你将得到内容uri …将此uri传递给给定的方法
public static String getGDriveDataColumn(Context context,Uri uri,String selection,String[] selectionArgs) {
    Cursor cursor = null;
    final String column = "_display_name";
    final String[] projection = {
        column
    };

    try {
        cursor = context.getContentResolver().query(uri,projection,selection,selectionArgs,null);
        if (cursor != null && cursor.moveToFirst()) {
            final int column_index = cursor.getColumnIndexOrThrow(column);
            return cursor.getString(column_index);
        }
    } finally {
        if (cursor != null)
            cursor.close();
    }
            return null;    

}
原文链接:https://www.f2er.com/android/317700.html

猜你在找的Android相关文章