web-dev-qa-db-ja.com

URIから実際のパスを取得する、Android KitKatの新しいストレージアクセスフレームワーク

Android 4.4 (KitKat)に新しいギャラリーへアクセスする前に、私はこの方法でSDカード上に私の本当のパスを得ました:

public String getPath(Uri uri) {
   String[] projection = { MediaStore.Images.Media.DATA };
   Cursor cursor = managedQuery(uri, projection, null, null, null);
   startManagingCursor(cursor);
   int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
   cursor.moveToFirst();
 return cursor.getString(column_index);
}

これで、Intent.ACTION_GET_CONTENTは異なるデータを返します。

前:

content://media/external/images/media/62

今:

content://com.Android.providers.media.documents/document/image:62

SDカード上の実際のパスを取得する方法を教えてください。

191
Álvaro

注:この回答は問題の一部を解決しています。 (ライブラリ形式の)完全な解決策については、 Paul Burkeの答え をご覧ください。

URIを使用してdocument idを取得してから、MediaStore.Images.Media.EXTERNAL_CONTENT_URIまたはMediaStore.Images.Media.INTERNAL_CONTENT_URIのいずれかを照会することができます(SDカードの状況に応じて)。

ドキュメントIDを取得するには

// Will return "image:x*"
String wholeID = DocumentsContract.getDocumentId(uriThatYouCurrentlyHave);

// Split at colon, use second item in the array
String id = wholeID.split(":")[1];

String[] column = { MediaStore.Images.Media.DATA };     

// where id is equal to             
String sel = MediaStore.Images.Media._ID + "=?";

Cursor cursor = getContentResolver().
                          query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, 
                          column, sel, new String[]{ id }, null);

String filePath = "";

int columnIndex = cursor.getColumnIndex(column[0]);

if (cursor.moveToFirst()) {
    filePath = cursor.getString(columnIndex);
}   

cursor.close();

参考:私はこの解決策の元となっている記事を見つけることができません。私はオリジナルのポスターにここに貢献してもらいたいと思いました。今夜はもう少し見えます。

115
Vikram

これはMediaProvider、DownloadsProvider、およびExternalStorageProviderからファイルパスを取得しますが、言及した非公式のContentProviderメソッドにフォールバックします。

/**
 * Get a file path from a Uri. This will get the the path for Storage Access
 * Framework Documents, as well as the _data field for the MediaStore and
 * other file-based ContentProviders.
 *
 * @param context The context.
 * @param uri The Uri to query.
 * @author paulburke
 */
public static String getPath(final Context context, final Uri uri) {

    final boolean isKitKat = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KitKat;

    // DocumentProvider
    if (isKitKat && DocumentsContract.isDocumentUri(context, uri)) {
        // ExternalStorageProvider
        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];
            }

            // TODO handle non-primary volumes
        }
        // DownloadsProvider
        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);
        }
        // MediaProvider
        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);
        }
    }
    // MediaStore (and general)
    else if ("content".equalsIgnoreCase(uri.getScheme())) {
        return getDataColumn(context, uri, null, null);
    }
    // File
    else if ("file".equalsIgnoreCase(uri.getScheme())) {
        return uri.getPath();
    }

    return null;
}

/**
 * Get the value of the data column for this Uri. This is useful for
 * MediaStore Uris, and other file-based ContentProviders.
 *
 * @param context The context.
 * @param uri The Uri to query.
 * @param selection (Optional) Filter used in the query.
 * @param selectionArgs (Optional) Selection arguments used in the query.
 * @return The value of the _data column, which is typically a file path.
 */
public 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 column_index = cursor.getColumnIndexOrThrow(column);
            return cursor.getString(column_index);
        }
    } finally {
        if (cursor != null)
            cursor.close();
    }
    return null;
}


/**
 * @param uri The Uri to check.
 * @return Whether the Uri authority is ExternalStorageProvider.
 */
public static boolean isExternalStorageDocument(Uri uri) {
    return "com.Android.externalstorage.documents".equals(uri.getAuthority());
}

/**
 * @param uri The Uri to check.
 * @return Whether the Uri authority is DownloadsProvider.
 */
public static boolean isDownloadsDocument(Uri uri) {
    return "com.Android.providers.downloads.documents".equals(uri.getAuthority());
}

/**
 * @param uri The Uri to check.
 * @return Whether the Uri authority is MediaProvider.
 */
public static boolean isMediaDocument(Uri uri) {
    return "com.Android.providers.media.documents".equals(uri.getAuthority());
}

これらは私のオープンソースライブラリ aFileChooser から取られています。

491
Paul Burke

以下の答えは https://stackoverflow.com/users/3082682/cvizv によって書かれています - 彼は質問に答えるのに十分な担当者を持っていないので、私はそれを投稿しています。私にはクレジットがありません。

public String getImagePath(Uri uri){
   Cursor cursor = getContentResolver().query(uri, null, null, null, null);
   cursor.moveToFirst();
   String document_id = cursor.getString(0);
   document_id = document_id.substring(document_id.lastIndexOf(":")+1);
   cursor.close();

   cursor = getContentResolver().query( 
   Android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
   null, MediaStore.Images.Media._ID + " = ? ", new String[]{document_id}, null);
   cursor.moveToFirst();
   String path = cursor.getString(cursor.getColumnIndex(MediaStore.Images.Media.DATA));
   cursor.close();

   return path;
}

編集:コード上の流れがあります。デバイスに複数の外部ストレージ(外部SDカード、外部USBなど)がある場合、コードの上に非プライマリストレージは機能しません。

69
guness

KitKatで新しいギャラリーにアクセスする前に、私はこの方法でSDカードに私の本当の道を得た

それは決して信頼できませんでした。 ACTION_GET_CONTENTまたはACTION_PICK要求から返されるUriMediaStoreによって索引付けされている必要があり、さらにはファイルシステム上のファイルを表している必要もありません。 Uriは、例えば、暗号化されたファイルがその場で復号化されるストリームを表すことができます。

SDカードで実際のパスを取得する方法を教えてください。

Uriに対応するファイルがあるという要件はありません。

はい、私は本当に道が必要です

その後、ファイルをストリームから自分の一時ファイルにコピーして使用します。さらに良いことに、ストリームを直接使用し、一時ファイルを避けてください。

Intent.ACTION_PICK用にIntent.ACTION_GET_CONTENTを変更しました

それはあなたの状況を助けません。 ACTION_PICK応答が、あなたがどういうわけか魔法のように導出できるファイルシステム上のファイルを持つUriに対するものであるという要件はありません。

27
CommonsWare

この答えは、漠然とした説明に基づいています。次のアクションでインテントを起動したと仮定します:Intent.ACTION_GET_CONTENT

これで、以前のメディアプロバイダーURIの代わりにcontent://com.Android.providers.media.documents/document/image:62が返されます。

Android 4.4(KitKat)では、Intent.ACTION_GET_CONTENTが起動されると新しいDocumentsActivityが開かれるため、画像を選択できるグリッドビュー(またはリストビュー)に移動し、次のURIを返します。呼び出しコンテキスト(例):content://com.Android.providers.media.documents/document/image:62(これらは新しいドキュメントプロバイダーへのURIです。クライアントに一般的なドキュメントプロバイダーURIを提供することにより、基になるデータを抽象化します)。

ただし、DocumentsActivityの引き出しを使用して、Intent.ACTION_GET_CONTENTに応答するギャラリーと他のアクティビティの両方にアクセスできます(左から右にドラッグすると、ギャラリーを選択する引き出しUIが表示されます)から)。キットカット以前のように

まだDocumentsActivityクラスを選択してファイルURIが必要な場合は、次の(これはハッキングです!)クエリ(contentresolverを使用)を実行できる必要があります:content://com.Android.providers.media.documents/document/image:62 URIとカーソルから_display_name値を読み取る。これはやや一意の名前(ローカルファイルのファイル名のみ)であり、メディアプロバイダーへの選択(クエリ時)でそれを使用して、ここからこの選択に対応する正しい行を取得し、ファイルURIも取得できます。

ドキュメントプロバイダーにアクセスするための推奨される方法は、ここで見つけることができます(入力ストリームまたはファイル記述子を取得して、ファイル/ビットマップを読み取ります)。

ドキュメントプロバイダーの使用例

9
Magnus

私はまったく同じ問題を抱えていました。 Webサイトにアップロードできるように、ファイル名が必要です。

私の意図をPICKに変更した場合、それは私のために働きました。これは、Android 4.4のAVDとAndroid 2.1のAVDでテストされています。

権限READ_EXTERNAL_STORAGEを追加します。

<uses-permission Android:name="Android.permission.READ_EXTERNAL_STORAGE" />

意図を変更します。

Intent i = new Intent(
  Intent.ACTION_PICK,
  Android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI
  );
startActivityForResult(i, 66453666);

/* OLD CODE
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(
  Intent.createChooser( intent, "Select Image" ),
  66453666
  );
*/

実際のパスを取得するためにコードを変更する必要はありませんでした。

// Convert the image URI to the direct file system path of the image file
 public String mf_szGetRealPathFromURI(final Context context, final Uri ac_Uri )
 {
     String result = "";
     boolean isok = false;

     Cursor cursor = null;
      try { 
        String[] proj = { MediaStore.Images.Media.DATA };
        cursor = context.getContentResolver().query(ac_Uri,  proj, null, null, null);
        int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
        cursor.moveToFirst();
        result = cursor.getString(column_index);
        isok = true;
      } finally {
        if (cursor != null) {
          cursor.close();
        }
      }

      return isok ? result : "";
 }
7

これを試して:

//KitKat
i = new Intent(Intent.ACTION_PICK,Android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(i, CHOOSE_IMAGE_REQUEST);

OnActivityResultで以下を使用してください。

Uri selectedImageURI = data.getData();
input = c.getContentResolver().openInputStream(selectedImageURI);
BitmapFactory.decodeStream(input , null, opts);
6
rahulritesh

これは Paul Burkeの答え の更新版です。 Android 4.4 (KitKat)以下のバージョンでは、 DocumentsContract クラスはありません。

KitKatより下のバージョンで作業するには、このクラスを作成します。

public class DocumentsContract {
    private static final String DOCUMENT_URIS =
        "com.Android.providers.media.documents " +
        "com.Android.externalstorage.documents " +
        "com.Android.providers.downloads.documents " +
        "com.Android.providers.media.documents";

    private static final String PATH_DOCUMENT = "document";
    private static final String TAG = DocumentsContract.class.getSimpleName();

    public static String getDocumentId(Uri documentUri) {
        final List<String> paths = documentUri.getPathSegments();
        if (paths.size() < 2) {
            throw new IllegalArgumentException("Not a document: " + documentUri);
        }

        if (!PATH_DOCUMENT.equals(paths.get(0))) {
            throw new IllegalArgumentException("Not a document: " + documentUri);
        }
        return paths.get(1);
    }

    public static boolean isDocumentUri(Uri uri) {
        final List<String> paths = uri.getPathSegments();
        Logger.v(TAG, "paths[" + paths + "]");
        if (paths.size() < 2) {
            return false;
        }
        if (!PATH_DOCUMENT.equals(paths.get(0))) {
            return false;
        }
        return DOCUMENT_URIS.contains(uri.getAuthority());
    }
}
5
Danylo Volokh

Android 4.4 (KitKat)および他のすべての以前のバージョンでシームレスに実行するには、以前のonActivityResult()のギャラリーピッカーコードで次の変更/修正を行う必要があります。

Uri selectedImgFileUri = data.getData();

if (selectedImgFileUri == null ) {

    // The user has not selected any photo
}

try {

   InputStream input = mActivity.getContentResolver().openInputStream(selectedImgFileUri);
   mSelectedPhotoBmp = BitmapFactory.decodeStream(input);
}
catch (Throwable tr) {

    // Show message to try again
}
3
Sachin Gupta