Android 4.4(KitKat)のAndroidギャラリーがIntent.ACTION_GET_CONTENTに対して異なるURIを返す


214

KitKatの前(または新しいギャラリーの前)はIntent.ACTION_GET_CONTENT、次のようなURIを返しました

content:// media / external / images / media / 3951。

を使用して ContentResolverMediaStore.Images.Media.DATA、ファイルのURLが返されます。

ただし、KitKatでは、ギャラリーは次のように(「Last」を介して)URIを返します。

content://com.android.providers.media.documents/document/image:3951

これをどのように処理しますか?


21
すぐに、ファイルへの直接アクセスを必要としないコンテンツの使用方法を見つけます。たとえば、それUriはを介してストリームとして開くことができますContentResolver。私は長い間content:// Uri、ファイルを表すaは常にに変換できると想定しているアプリに不安を感じていましたFile
CommonsWare 2013年

1
@CommonsWare、後で開くことができるように画像パスをsqlite dbに保存する場合、URIまたは絶対ファイルパスを保存する必要がありますか?
ヘビ

2
@CommonsWare私はあなたの緊張に同意します。:-)ただし、(画像の)ファイル名をネイティブコードに渡すことができる必要があります。解決策は、InputStreamon を使用して取得したデータをContentResolver事前に指定された場所にコピーして、既知のファイル名を持つようにすることです。しかし、これは私にとって無駄に聞こえます。他に何か提案はありますか?
darrenp 2014年

2
@darrenp:うーん...、InputStreamJNIを介して動作するようにネイティブコードを書き直しますか?残念ながら、それほど多くのオプションはありません。
CommonsWare 2014年

1
知っておくと便利です。御返答いただき有難うございます。ファイルを介してではなく、メモリ内のC ++に画像を渡すようになったので、ファイルのInputStream代わりに使用できることがわかりました(これはすばらしいことです)。EXIFタグの読み取りのみが少しトリッキーで、Drew Noakesのライブラリが必要です。コメントありがとうございます。
darrenp 2014年

回答:


108

これを試して:

if (Build.VERSION.SDK_INT <19){
    Intent intent = new Intent(); 
    intent.setType("image/jpeg");
    intent.setAction(Intent.ACTION_GET_CONTENT);
    startActivityForResult(Intent.createChooser(intent, getResources().getString(R.string.select_picture)),GALLERY_INTENT_CALLED);
} else {
    Intent intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
    intent.addCategory(Intent.CATEGORY_OPENABLE);
    intent.setType("image/jpeg");
    startActivityForResult(intent, GALLERY_KITKAT_INTENT_CALLED);
}

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (resultCode != Activity.RESULT_OK) return;
    if (null == data) return;
    Uri originalUri = null;
    if (requestCode == GALLERY_INTENT_CALLED) {
        originalUri = data.getData();
    } else if (requestCode == GALLERY_KITKAT_INTENT_CALLED) {
        originalUri = data.getData();
        final int takeFlags = data.getFlags()
                & (Intent.FLAG_GRANT_READ_URI_PERMISSION
                | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
        // Check for the freshest data.
        getContentResolver().takePersistableUriPermission(originalUri, takeFlags);
    }

    loadSomeStreamAsynkTask(originalUri);

}

おそらく必要

@SuppressLint( "NewApi")

ために

takePersistableUriPermission


1
KitKatコードの機能を詳しく説明していただけませんか?これには新しい許可が必要ですか?キットカット前のコードは、キットカットでも機能します。では、なぜKitKatに別のコードを使用することを選択するのですか?ありがとう。
Michael Greifeneder 2013年

67
新しいSDK URIからパスを取得できないようです。また、Googleがこのような変更を適切な文書化と発表なしに行ったのは残念です。
user65721 2013年

1
ファイルのURLを取得する方法を教えてください。SDカードで実際のパスを取得したいと思います。たとえば、画像の場合、ドキュメントUriではなく、このパス/storage/sdcard0/DCIM/Camera/IMG_20131118_153817_119.jpgを取得します。
アルバロ

4
KitKatのドキュメント(developer.android.com/about/versions/…)に基づくと、他のアプリケーションが所有するドキュメントを使用/編集する意図がない限り、これはOPに必要なものではない可能性があります。OPがコピーを必要とする場合、または古いバージョンと一貫性のある方法で処理を行う場合は、@ voytezによる回答がより適切です。
Colin M.

8
これではうまくいきません。次の例外が発生します(ストック4.4.2で):E / AndroidRuntime(29204):原因:java.lang.SecurityException:要求されたフラグ0x1ですが、許可されているのは0x0のみ
Russell Stewart

177

これは特別な権限を必要とせず、Storage Access Frameworkと非公式なContentProviderパターン(_dataフィールド内のファイルパス)で動作します。

/**
 * 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 the remote address
        if (isGooglePhotosUri(uri))
            return uri.getLastPathSegment();

        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 index = cursor.getColumnIndexOrThrow(column);
            return cursor.getString(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());
}

/**
 * @param uri The Uri to check.
 * @return Whether the Uri authority is Google Photos.
 */
public static boolean isGooglePhotosUri(Uri uri) {
    return "com.google.android.apps.photos.content".equals(uri.getAuthority());
}

このメソッドの最新バージョンについては、こちらをご覧ください


2
これは、4.4のNexus 5ドキュメントUIと、標準のギャラリーアプリを使用する他のいくつかのpref KitKatデバイスで素晴らしく機能しました。
Josh、

1
このおかげで、sdk 19でこれまでに到達するのに何年もかかりました!! 私の問題は、デバイスがファイルブラウザーとしてGoogleドライブを使用していることです。ファイルがデバイスイメージパス上にある場合は問題ありませんが、ファイルがドライブ上にある場合は開かれません。たぶん私はグーグルドライブから画像を開くことの扱いを見る必要があるだけです。私のアプリは、ファイルパスを使用し、インサンプリングを使用して画像を取得するように記述されています...
RuAware

2
@RuAwareドライブファイルを選択すると、とが返さAuthority: com.google.android.apps.docs.storageSegments: [document, acc=1;doc=667]ます。確かではありませんが、doc値はUriクエリ対象のIDであると想定しています。おそらく、こちらの「Androidでのアプリの承認」で詳しく説明されているように、developer.google.com/ drive/integrate-android-uiで権限を設定する必要があります。気づいたらこちらから更新してください。
Paul Burke

30
これは絶対に恐ろしいです!このように「ごまかす」コードを伝播し続けるべきではありません。それはあなたがパターンを知っているソースアプリだけをサポートし、ドキュメントプロバイダーモデルの全体のポイントは任意のソースをサポートすることです
j__m

2
_dataContentProviderがそれをサポートしていない時に動作しないでしょう。これは実際のファイルではなくDropboxクラウド内のファイルである可能性があるため、@ CommonsWareの手順に従い、完全なファイルパスを使用しないことをお勧めします。
soshial

67

同じ問題があり、上記の解決策を試しましたが、一般的には機能しましたが、何らかの理由で、android.permission.MANAGE_DOCUMENTS適切に追加されたアクセス許可を持っているにも関わらず、一部の画像に対してUriコンテンツプロバイダーでアクセス許可の拒否が発生しました。

とにかく、KITKATドキュメントビューの代わりに画像ギャラリーを強制的に開くという他の解決策を見つけました:

// KITKAT

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

そして画像をロードします:

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

編集

ACTION_OPEN_DOCUMENT 許可フラグなどを永続化する必要があり、通常はセキュリティ例外が発生することがよくあります...

他の解決策は、プレKKとKKの両方で機能するとACTION_GET_CONTENT組み合わせて使用することc.getContentResolver().openInputStream(selectedImageURI)です。Kitkatは新しいドキュメントビューを使用し、このソリューションは写真、ギャラリー、ファイルエクスプローラー、Dropbox、Googleドライブなどのすべてのアプリで動作しますが、このソリューションを使用する場合は、画像を作成してonActivityResult()保存する必要があることに注意してください。例えばSDカード。次のアプリの起動時に保存されたURIからこの画像を再作成すると、Google APIドキュメントで説明されているようにアクセス許可フラグを追加した場合でも、コンテンツリゾルバーでセキュリティ例外がスローされます(これは、いくつかのテストを行ったときに発生しました)。

さらに、Android Developer APIガイドラインでは次のことを推奨しています。

ACTION_OPEN_DOCUMENTは、ACTION_GET_CONTENTに代わるものではありません。どちらを使用するかは、アプリのニーズによって異なります。

アプリでデータの読み取り/インポートのみを行う場合は、ACTION_GET_CONTENTを使用します。このアプローチでは、アプリは画像ファイルなどのデータのコピーをインポートします。

ドキュメントプロバイダーが所有するドキュメントへの永続的な永続的アクセスをアプリに持たせたい場合は、ACTION_OPEN_DOCUMENTを使用します。例としては、ユーザーがドキュメントプロバイダーに保存されている画像を編集できる写真編集アプリがあります。


1
この回答には、私の目的に適した情報が含まれていました。KitKatでACTION_PICKとEXTERNAL_CONTENT_URIを条件付きで使用すると、古いバージョンのACTION_GET_CONTENTを単に使用するのと同じように、ContentResolverを介してギャラリー内の画像に関するメタデータを取得する同じ機能が提供されます。
Colin M.

@voytez、メッセージから返されたこのURIを画像の完全な実際のパスに変換できますか?
ヘビ

このコードはKKドキュメントビューではなくイメージギャラリーを開くので、KitKatの前と同じように機能するはずです。しかし、それを使用してイメージを作成する場合は、実際のパスへの変換が余分な不要なステップであるため、このソリューションの方が優れています。
voytez 2014年

4
の代わりに、私も働いたIntent.ACTION_GET_CONTENT。とにかく、ユーザーがブラウジング用のアプリを選択できるように、Intent.createChooser()ラッパーを新しいIntentで維持し、期待どおりに機能しました。誰かがこのソリューションの欠点を見ることはできますか?
lorenzo-s 2014

1
引用を不思議に思っている人のためにdeveloper.android.com/guide/topics/providers/…
snark

38

Commonswareが述べたように、経由するストリームがContentResolverファイルに変換可能であると仮定するべきではありません。

あなたが本当にすべきことは、InputStreamからを開きContentProvider、それからビットマップを作成することです。また、4.4以前のバージョンでも機能します。リフレクションの必要はありません。

    //cxt -> current context

    InputStream input;
    Bitmap bmp;
    try {
        input = cxt.getContentResolver().openInputStream(fileUri);
        bmp = BitmapFactory.decodeStream(input);
    } catch (FileNotFoundException e1) {

    }

もちろん、大きな画像を処理する場合は、適切な画像をロードする必要がありますinSampleSizehttp : //developer.android.com/training/displaying-bitmaps/load-bitmap.html。しかし、それは別のトピックです。


これは、Kitkatを実行するNexus 4では機能しませんが、4.1.2を実行するGalaxy S3では機能します
Dan2552

@ Dan2552どの部分が機能していませんか?何か例外はありますか?
のMichałK

ギャラリーへの誤ったインテントコールを使用していたことがわかりました。私はあらゆる種類のドキュメント用のものを使用していましたが、ファイル拡張子フィルターが付いています。
Dan2552 2013

2
なんて美しくシンプルな答え、ありがとう!この回答に続く他の人にとって、「cxt」は現在のコンテキストを指し、通常は「this」になります。
thomasforth 2015年

1
これはおそらく、ファイルが存在しないことを意味します。URIはOKのようです。
のMichałK

33

私はすでに投稿された回答が人々を正しい方向に導くはずだと信じています。しかし、ここで私が更新したレガシーコードに対して意味のあることを行いました。従来のコードは、ギャラリーのURIを使用して画像を変更して保存していました。

4.4より前(およびGoogleドライブ)では、URIは次のようになります。 :// media / external / images / media / 41

質問で述べたように、彼らはより頻繁に次のようになります: content://com.android.providers.media.documents/document/image:3951

画像を保存し、既存のコードを変更しない機能が必要だったので、ギャラリーからアプリのデータフォルダーにURIをコピーしました。次に、データフォルダーに保存された画像ファイルから新しいURIを作成しました。

ここにアイデアがあります:

Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
startActivityForResult(intent), CHOOSE_IMAGE_REQUEST);

public void onActivityResult(int requestCode, int resultCode, Intent data) {

    super.onActivityResult(requestCode, resultCode, data);

    File tempFile = new File(this.getFilesDir().getAbsolutePath(), "temp_image");

    //Copy URI contents into temporary file.
    try {
        tempFile.createNewFile();
        copyAndClose(this.getContentResolver().openInputStream(data.getData()),new FileOutputStream(tempFile));
    }
    catch (IOException e) {
        //Log Error
    }

    //Now fetch the new URI
    Uri newUri = Uri.fromFile(tempFile);

    /* Use new URI object just like you used to */
 }

注-copyAndClose()は、ファイルI / Oを実行して、InputStreamをFileOutputStreamにコピーします。コードは投稿されません。


かなり賢い。私も実際のファイルuriが必要でした
GreaterKing

あなたは私のヒーローです、これはまさに私が必要としたものです!Googleドライブのファイルにも
適し

箱から出して考えてみませんか?:Dこのコードは、期待していたとおりに機能します。
WeirdElfB0y 2015年

2
copyAndCloseのコードを投稿してください。答えは完全ではありません
Bartek Pacia

24

ただ、と言ってみたかった、この答えは素晴らしいですし、私は問題もなく、長い時間のためにそれを使用しています。しかし、少し前に、DownloadsProviderがURIを形式で返すという問題に遭遇しました。そのため、uriセグメントを長い間解析することができないcontent://com.android.providers.downloads.documents/document/raw%3A%2Fstorage%2Femulated%2F0%2FDownload%2Fdoc.pdfため、アプリがクラッシュしNumberFormatExceptionます。ただし、raw:セグメントには、参照ファイルを取得するために使用できる直接URIが含まれています。だから私はisDownloadsDocument(uri) ifコンテンツを次のように置き換えることで修正しました:

final String id = DocumentsContract.getDocumentId(uri);
if (!TextUtils.isEmpty(id)) {
if (id.startsWith("raw:")) {
    return id.replaceFirst("raw:", "");
}
try {
    final Uri contentUri = ContentUris.withAppendedId(
            Uri.parse("content://downloads/public_downloads"), Long.valueOf(id));
    return getDataColumn(context, contentUri, null, null);
} catch (NumberFormatException e) {
    Log.e("FileUtils", "Downloads provider returned unexpected uri " + uri.toString(), e);
    return null;
}
}

2
完璧に動作します!ありがとう
mikemike396

8

複数の回答を1つの実用的なソリューションに組み合わせて、ファイルパスを作成しました

MIMEタイプは、例の目的には関係ありません。

            Intent intent;
            if(Build.VERSION.SDK_INT >= 19){
                intent = new Intent(Intent.ACTION_OPEN_DOCUMENT);
                intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, false);
                intent.addFlags(Intent.FLAG_GRANT_PERSISTABLE_URI_PERMISSION);
            }else{
                intent = new Intent(Intent.ACTION_GET_CONTENT);
            }
            intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
            intent.setType("application/octet-stream");
            if(isAdded()){
                startActivityForResult(intent, RESULT_CODE);
            }

取り扱い結果

    @Override
    public void onActivityResult(int requestCode, int resultCode, Intent data) {
    if( requestCode == RESULT_CODE && resultCode == Activity.RESULT_OK) {
        Uri uri = data.getData();
        if (uri != null && !uri.toString().isEmpty()) {
            if(Build.VERSION.SDK_INT >= 19){
                final int takeFlags = data.getFlags() & Intent.FLAG_GRANT_READ_URI_PERMISSION;
                //noinspection ResourceType
                getActivity().getContentResolver()
                        .takePersistableUriPermission(uri, takeFlags);
            }
            String filePath = FilePickUtils.getSmartFilePath(getActivity(), uri);
            // do what you need with it...
        }
    }
}

FilePickUtils

import android.annotation.SuppressLint;
import android.content.ContentUris;
import android.content.Context;
import android.database.Cursor;
import android.net.Uri;
import android.os.Build;
import android.os.Environment;
import android.provider.DocumentsContract;
import android.provider.MediaStore;

public class FilePickUtils {
    private static String getPathDeprecated(Context ctx, Uri uri) {
        if( uri == null ) {
            return null;
        }
        String[] projection = { MediaStore.Images.Media.DATA };
        Cursor cursor = ctx.getContentResolver().query(uri, projection, null, null, null);
        if( cursor != null ){
            int column_index = cursor
                    .getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
            cursor.moveToFirst();
            return cursor.getString(column_index);
        }
        return uri.getPath();
    }

    public static String getSmartFilePath(Context ctx, Uri uri){

        if (Build.VERSION.SDK_INT < 19) {
            return getPathDeprecated(ctx, uri);
        }
        return  FilePickUtils.getPath(ctx, uri);
    }

    @SuppressLint("NewApi")
    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());
    }

}

私は問題に直面していました... uri.getPath()は/ externalでuriを返していましたが、パスを返していませんでした。私は、この他にあれば(「コンテンツ」.equalsIgnoreCase(uri.getScheme()))ブロックを追加して、これは今、良い作品.. uはそれが何をするのか説明することができます
FaisalAhmed

filePathがnullになります。uri内:content://com.android.externalstorage.documents/document/799B-1419%3AScreenshot%2FScreenshot_20181117_162826.png
Bhavesh Moradiya

7

質問

URIから実際のファイルパスを取得する方法

回答

私の知る限り、URIからファイルパスを取得する必要はありません。ほとんどの場合、URIを直接使用して作業を行うことができるためです(1.ビットマップの取得2.サーバーへのファイルの送信など)。 。)

1.サーバーに送信する

URIだけを使用してファイルをサーバーに直接送信できます。

URIを使用してInputStreamを取得できます。これは、MultiPartEntityを使用してサーバーに直接送信できます。

/**
 * Used to form Multi Entity for a URI (URI pointing to some file, which we got from other application).
 *
 * @param uri     URI.
 * @param context Context.
 * @return Multi Part Entity.
 */
public MultipartEntity formMultiPartEntityForUri(final Uri uri, final Context context) {
    MultipartEntity multipartEntity = new MultipartEntity(HttpMultipartMode.BROWSER_COMPATIBLE, null, Charset.forName("UTF-8"));
    try {
        InputStream inputStream = mContext.getContentResolver().openInputStream(uri);
        if (inputStream != null) {
            ContentBody contentBody = new InputStreamBody(inputStream, getFileNameFromUri(uri, context));
            multipartEntity.addPart("[YOUR_KEY]", contentBody);
        }
    }
    catch (Exception exp) {
        Log.e("TAG", exp.getMessage());
    }
    return multipartEntity;
}

/**
 * Used to get a file name from a URI.
 *
 * @param uri     URI.
 * @param context Context.
 * @return File name from URI.
 */
public String getFileNameFromUri(final Uri uri, final Context context) {

    String fileName = null;
    if (uri != null) {
        // Get file name.
        // File Scheme.
        if (ContentResolver.SCHEME_FILE.equals(uri.getScheme())) {
            File file = new File(uri.getPath());
            fileName = file.getName();
        }
        // Content Scheme.
        else if (ContentResolver.SCHEME_CONTENT.equals(uri.getScheme())) {
            Cursor returnCursor =
                    context.getContentResolver().query(uri, null, null, null, null);
            if (returnCursor != null && returnCursor.moveToFirst()) {
                int nameIndex = returnCursor.getColumnIndex(OpenableColumns.DISPLAY_NAME);
                fileName = returnCursor.getString(nameIndex);
                returnCursor.close();
            }
        }
    }
    return fileName;
}

2. URIからビットマップを取得する

URIが画像を指している場合、ビットマップを取得します。

/**
 * Used to create bitmap for the given URI.
 * <p>
 * 1. Convert the given URI to bitmap.
 * 2. Calculate ratio (depending on bitmap size) on how much we need to subSample the original bitmap.
 * 3. Create bitmap bitmap depending on the ration from URI.
 * 4. Reference - http://stackoverflow.com/questions/3879992/how-to-get-bitmap-from-an-uri
 *
 * @param context       Context.
 * @param uri           URI to the file.
 * @param bitmapSize Bitmap size required in PX.
 * @return Bitmap bitmap created for the given URI.
 * @throws IOException
 */
public static Bitmap createBitmapFromUri(final Context context, Uri uri, final int bitmapSize) throws IOException {

    // 1. Convert the given URI to bitmap.
    InputStream input = context.getContentResolver().openInputStream(uri);
    BitmapFactory.Options onlyBoundsOptions = new BitmapFactory.Options();
    onlyBoundsOptions.inJustDecodeBounds = true;
    onlyBoundsOptions.inDither = true;//optional
    onlyBoundsOptions.inPreferredConfig = Bitmap.Config.ARGB_8888;//optional
    BitmapFactory.decodeStream(input, null, onlyBoundsOptions);
    input.close();
    if ((onlyBoundsOptions.outWidth == -1) || (onlyBoundsOptions.outHeight == -1)) {
        return null;
    }

    // 2. Calculate ratio.
    int originalSize = (onlyBoundsOptions.outHeight > onlyBoundsOptions.outWidth) ? onlyBoundsOptions.outHeight : onlyBoundsOptions.outWidth;
    double ratio = (originalSize > bitmapSize) ? (originalSize / bitmapSize) : 1.0;

    // 3. Create bitmap.
    BitmapFactory.Options bitmapOptions = new BitmapFactory.Options();
    bitmapOptions.inSampleSize = getPowerOfTwoForSampleRatio(ratio);
    bitmapOptions.inDither = true;//optional
    bitmapOptions.inPreferredConfig = Bitmap.Config.ARGB_8888;//optional
    input = context.getContentResolver().openInputStream(uri);
    Bitmap bitmap = BitmapFactory.decodeStream(input, null, bitmapOptions);
    input.close();

    return bitmap;
}

/**
 * For Bitmap option inSampleSize - We need to give value in power of two.
 *
 * @param ratio Ratio to be rounded of to power of two.
 * @return Ratio rounded of to nearest power of two.
 */
private static int getPowerOfTwoForSampleRatio(final double ratio) {
    int k = Integer.highestOneBit((int) Math.floor(ratio));
    if (k == 0) return 1;
    else return k;
}

コメント

  1. AndroidはURIからファイルパスを取得するメソッドを提供していません。上記のほとんどの回答では、いくつかの定数をハードコーディングしています。これらの定数は、機能のリリースで機能しなくなる可能性があります(申し訳ありませんが、私は間違っている可能性があります)。
  2. URIからファイルパスを取得するソリューションに直接進む前に、URIとAndroidのデフォルトメソッドでユースケースを解決できるかどうか試してください。

参照

  1. https://developer.android.com/guide/topics/providers/content-provider-basics.html
  2. https://developer.android.com/reference/android/content/ContentResolver.html
  3. https://hc.apache.org/httpcomponents-client-ga/httpmime/apidocs/org/apache/http/entity/mime/content/InputStreamBody.html

ありがとうございました。この方法でUriとContentResolverを使用すると、ファイルを処理するときにアプリケーションが大幅に簡素化されました。
jacksonakj 2016


3

Android SDKバージョン23以降で@Paul Burkeのコードをまだ使用している場合、プロジェクトでEXTERNAL_PERMISSIONがないというエラーが発生し、AndroidManifest.xmlファイルにユーザー権限がすでに追加されていることが確実です。これは、Android API 23以降を使用している可能性があり、実行時にファイルにアクセスするアクションを実行している間、Googleが再度許可を保証する必要があるためです。

つまり、SDKのバージョンが23以上の場合、画像ファイルを選択し、そのURIを知りた​​いときに、読み取りと書き込みのアクセス許可を求められます。

そして、Paul Burkeのソリューションに加えて、以下は私のコードです。これらのコードを追加すると、プロジェクトが正常に動作し始めます。

private static final int REQUEST_EXTERNAL_STORAGE = 1;
private static final String[] PERMISSINOS_STORAGE = {
    Manifest.permission.READ_EXTERNAL_STORAGE,
    Manifest.permission.WRITE_EXTERNAL_STORAGE
};

public static void verifyStoragePermissions(Activity activity) {
    int permission = ActivityCompat.checkSelfPermission(activity, Manifest.permission.WRITE_EXTERNAL_STORAGE);

    if (permission != PackageManager.PERMISSION_GRANTED) {
        ActivityCompat.requestPermissions(
                activity,
                PERMISSINOS_STORAGE,
                REQUEST_EXTERNAL_STORAGE
        );
    }
}

そして、あなたがURIを要求しているあなたのactivity&fragmentで:

private void pickPhotoFromGallery() {

    CompatUtils.verifyStoragePermissions(this);
    Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
    intent.setType("image/*");
    // startActivityForResult(intent, REQUEST_PHOTO_LIBRARY);
    startActivityForResult(Intent.createChooser(intent, "选择照片"),
            REQUEST_PHOTO_LIBRARY);
}

私の場合、CompatUtils.javaは、verifyStoragePermissionsメソッドを(他のアクティビティ内で呼び出すことができるように静的型として)定義する場所です。

また、verifyStoragePermissionsメソッドを呼び出す前に、現在のSDKバージョンが23を超えているかどうかを最初に確認する場合は、if状態を作成する方が意味があります。


2

これが私がすることです:

Uri selectedImageURI = data.getData();    imageFile = new File(getRealPathFromURI(selectedImageURI)); 

private String getRealPathFromURI(Uri contentURI) {
  Cursor cursor = getContentResolver().query(contentURI, null, null, null, null);
  if (cursor == null) { // Source is Dropbox or other similar local file path
      return contentURI.getPath();
      } else { 
      cursor.moveToFirst(); 
      int idx = cursor.getColumnIndex(MediaStore.Images.ImageColumns.DATA); 
      return cursor.getString(idx); 
  }
}

注:managedQuery()メソッドは非推奨であるため、使用していません。

この回答は、質問androidの m3n0RからのUri.getPath ()による実際のパスの取得であり、クレジットはありません。この問題をまだ解決していない人でも使えると思いました。


2
これは、KitKatの新しいGalleryアプリ(厳密には「Media Documents Provider」アプリ)に対する回答ではありません。
nagoya0 2014年

質問者が「ギャラリー」と呼ぶアプリは、おそらくキットカットの新しいファイルピッカーです。FYI:addictivetips.com/android/...
nagoya0

私は同様にして、この行のNexus 5X、Android 6でIndexOutOfBoundを取得しました:cursor.getString(idx);
Osify

1

takePersistableUriPermissionメソッドはランタイム例外を発生させるため、使用しないようにしてください。/ ** *ギャラリーから選択します。* /

public void selectFromGallery() {
    if (Build.VERSION.SDK_INT < AppConstants.KITKAT_API_VERSION) {

        Intent intent = new Intent(); 
        intent.setType("image/*");
        intent.setAction(Intent.ACTION_GET_CONTENT);
        ((Activity)mCalledContext).startActivityForResult(intent,AppConstants.GALLERY_INTENT_CALLED);

    } else {

        Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
        intent.setType("image/*");
        ((Activity)mCalledContext).startActivityForResult(intent, AppConstants.GALLERY_AFTER_KITKAT_INTENT_CALLED);
    }
}

画像データを処理する結果のOnActivity:

@Override protected void onActivityResult(int requestCode、int resultCode、Intent data){

    //gallery intent result handling before kit-kat version
    if(requestCode==AppConstants.GALLERY_INTENT_CALLED 
            && resultCode == RESULT_OK) {

        Uri selectedImage = data.getData();
        String[] filePathColumn = {MediaStore.Images.Media.DATA};
        Cursor cursor = getContentResolver().query(selectedImage,filePathColumn, null, null, null);
        cursor.moveToFirst();
        int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
        String filePath = cursor.getString(columnIndex);
        cursor.close();
        photoFile = new File(filePath);
        mImgCropping.startCropImage(photoFile,AppConstants.REQUEST_IMAGE_CROP);

    }
    //gallery intent result handling after kit-kat version
    else if (requestCode == AppConstants.GALLERY_AFTER_KITKAT_INTENT_CALLED 
            && resultCode == RESULT_OK) {

        Uri selectedImage = data.getData();
        InputStream input = null;
        OutputStream output = null;

        try {
            //converting the input stream into file to crop the 
            //selected image from sd-card.
            input = getApplicationContext().getContentResolver().openInputStream(selectedImage);
            try {
                photoFile = mImgCropping.createImageFile();
            } catch (IOException e) {
                e.printStackTrace();
            }catch(Exception e) {
                e.printStackTrace();
            }
            output = new FileOutputStream(photoFile);

            int read = 0;
            byte[] bytes = new byte[1024];

            while ((read = input.read(bytes)) != -1) {
                try {
                    output.write(bytes, 0, read);
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }


    }

2番目のケースで画像をどこに表示しますか?
Quantum_VC 2015

申し訳ありませんが、mImgCropping.startCropImage(photoFile、AppConstants.REQUEST_IMAGE_CROP);の場合、このコード行をelseに追加できませんでした。私のプロジェクトの必要性に応じて、再び画像トリミング関数を呼び出す必要があります
サラニヤ

photoFileとmImgCroppingはどのファイルタイプですか?
フィリップBH 2015年

1

誰かが興味を持っている場合、私は動作するKotlinバージョンを作成しましたACTION_GET_CONTENT

var path: String = uri.path // uri = any content Uri
val databaseUri: Uri
val selection: String?
val selectionArgs: Array<String>?
if (path.contains("/document/image:")) { // files selected from "Documents"
    databaseUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI
    selection = "_id=?"
    selectionArgs = arrayOf(DocumentsContract.getDocumentId(uri).split(":")[1])
} else { // files selected from all other sources, especially on Samsung devices
    databaseUri = uri
    selection = null
    selectionArgs = null
}
try {
    val projection = arrayOf(MediaStore.Images.Media.DATA,
        MediaStore.Images.Media._ID,
        MediaStore.Images.Media.ORIENTATION,
        MediaStore.Images.Media.DATE_TAKEN) // some example data you can query
    val cursor = context.contentResolver.query(databaseUri,
        projection, selection, selectionArgs, null)
    if (cursor.moveToFirst()) {
        // do whatever you like with the data
    }
    cursor.close()
} catch (e: Exception) {
    Log.e(TAG, e.message, e)
}

Kotlinの動作コードが欲しいだけです。それは私にとって仕事です。感謝
Harvi Sirja

1

私はここでいくつかの答えを試しましたが、私は毎回機能し、権限も管理するソリューションがあると思います。

これは、LEOの巧妙なソリューションに基づいています。この投稿には、これを機能させるために必要なすべてのコードが含まれている必要があり、どの電話とAndroidバージョンでも機能するはずです;)

SDカードからファイルを選択する機能を使用するには、マニフェストでこれが必要になります。

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

定数:

private static final int PICK_IMAGE = 456; // Whatever number you like
public static final int MY_PERMISSIONS_REQUEST_READ_EXTERNAL = 28528; // Whatever number you like
public static final String FILE_TEMP_NAME = "temp_image"; // Whatever file name you like

権限を確認し、可能であればLaunchImagePick

if (ContextCompat.checkSelfPermission(getThis(),
        Manifest.permission.READ_EXTERNAL_STORAGE)
        != PackageManager.PERMISSION_GRANTED) {

    ActivityCompat.requestPermissions(getThis(),
            new String[]{Manifest.permission.READ_EXTERNAL_STORAGE},
            MY_PERMISSIONS_REQUEST_READ_EXTERNAL);
}
else {
    launchImagePick();
}

許可応答

@Override
public void onRequestPermissionsResult(int requestCode,
                                       @NonNull
                                         String permissions[],
                                       @NonNull
                                         int[] grantResults) {

    if (manageReadExternalPermissionResponse(this, requestCode, grantResults)) {
        launchImagePick();
    }
}

権限応答を管理する

public static boolean manageReadExternalPermissionResponse(final Activity activity, int requestCode, int[] grantResults) {

    if (requestCode == MY_PERMISSIONS_REQUEST_READ_EXTERNAL) {

        // If request is cancelled, the result arrays are empty.

        if (grantResults.length > 0
                && grantResults[0] == PackageManager.PERMISSION_GRANTED) {

            // Permission was granted, yay! Do the
            // contacts-related task you need to do.
            return true;

        } else if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_DENIED) {

            boolean showRationale = ActivityCompat.shouldShowRequestPermissionRationale(activity,
                    Manifest.permission.READ_EXTERNAL_STORAGE);

            if (!showRationale) {
                // The user also CHECKED "never ask again".
                // You can either enable some fall back,
                // disable features of your app
                // or open another dialog explaining
                // again the permission and directing to
                // the app setting.

            } else {
                // The user did NOT check "never ask again".
                // This is a good place to explain the user
                // why you need the permission and ask if he/she wants
                // to accept it (the rationale).
            }
        } else {
            // Permission denied, boo! Disable the
            // functionality that depends on this permission.
        }
    }
    return false;
}

画像ピックを起動

private void launchImagePick() {

    Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
    intent.setType("image/*");
    intent.addCategory(Intent.CATEGORY_OPENABLE);
    startActivityForResult(intent, PICK_IMAGE);

    // see onActivityResult
}

画像選択応答を管理する

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (requestCode == PICK_IMAGE) {

        if (resultCode == Activity.RESULT_OK) {
            if (data != null && data.getData() != null) {

                try {
                     InputStream inputStream = getContentResolver().openInputStream(data.getData())
                     if (inputStream != null) {

                        // No special persmission needed to store the file like that
                        FileOutputStream fos = openFileOutput(FILE_TEMP_NAME, Context.MODE_PRIVATE);

                        final int BUFFER_SIZE = 1 << 10 << 3; // 8 KiB buffer
                        byte[] buffer = new byte[BUFFER_SIZE];
                        int bytesRead = -1;
                        while ((bytesRead = inputStream.read(buffer)) > -1) {
                            fos.write(buffer, 0, bytesRead);
                        }
                        inputStream.close();
                        fos.close();

                        File tempImageFile = new File(getFilesDir()+"/"+FILE_TEMP_NAME);

                        // Do whatever you want with the File

                        // Delete when not needed anymore
                        deleteFile(FILE_TEMP_NAME);
                    }
                }
                catch (Exception e) {
                    e.printStackTrace();
                }
            } else {
                // Error display
            }
        } else {
            // The user did not select any image
        }
    }
}

それはすべての人々です。これは私が持っているすべての電話で私のために働きます。


0

これは完全なハックですが、これが私がしたことです...

DocumentsProviderの設定で遊んでいるときに、サンプルコードgetDocIdForFile450行目付近)が、指定したルート(つまり、mBaseDir96行目で設定した内容)。

したがって、URIは次のようになります。

content://com.example.provider/document/root:path/to/the/file

ドキュメントが言うように、それは単一のルートのみを想定してEnvironment.getExternalStorageDirectory()います(私の場合はそうですが、どこか他の場所で使用できます...それから、それはルートから始まり、それを一意のIDにし、「root:」を前に付けます。それで私は"/document/root:uri.getPath()から "部分を削除してパスを決定し、次のようなことで実際のファイルパスを作成できます。

public void onActivityResult(int requestCode, int resultCode, Intent data) {
// check resultcodes and such, then...
uri = data.getData();
if (uri.getAuthority().equals("com.example.provider"))  {
    String path = Environment.getExternalStorageDirectory(0.toString()
                 .concat("/")
                 .concat(uri.getPath().substring("/document/root:".length())));
    doSomethingWithThePath(path); }
else {
    // another provider (maybe a cloud-based service such as GDrive)
    // created this uri.  So handle it, or don't.  You can allow specific
    // local filesystem providers, filter non-filesystem path results, etc.
}

知っている。恥ずかしいですが、うまくいきました。繰り返しますが、これはあなたがあなた自身の、アプリでドキュメントプロバイダーを使用してドキュメントIDを生成する必要があります。

(また、「/」がパス区切り文字であると想定しないパスを作成するためのより良い方法があります。しかし、あなたはアイデアを得るでしょう。)


さらにクレイジーな考えで自分に返信するには、アプリがすでにfile://外部ファイルピッカーからのインテントを処理している場合は、上記の例のように、権限をチェックして、カスタムプロバイダーからのものであることを確認することもできます。また、パスを使用して、file://抽出したパスを使用して新しいインテントを「偽造」し、StartActivity()アプリがそれを取得できるようにします。ひどい。
fattire 2013年

0

これは私にとってはうまくいきました:

else if(requestCode == GALLERY_ACTIVITY_NEW && resultCode == Activity.RESULT_OK)
{
    Uri uri = data.getData();
    Log.i(TAG, "old uri =  " + uri);
    dumpImageMetaData(uri);

    try {
        ParcelFileDescriptor parcelFileDescriptor =
                getContentResolver().openFileDescriptor(uri, "r");
        FileDescriptor fileDescriptor = parcelFileDescriptor.getFileDescriptor();
        Log.i(TAG, "File descriptor " + fileDescriptor.toString());

        final BitmapFactory.Options options = new BitmapFactory.Options();
        options.inJustDecodeBounds = true;
        BitmapFactory.decodeFileDescriptor(fileDescriptor, null, options);

        options.inSampleSize =
           BitmapHelper.calculateInSampleSize(options,
                                              User.PICTURE_MAX_WIDTH_IN_PIXELS,
                                              User.PICTURE_MAX_HEIGHT_IN_PIXELS);
        options.inJustDecodeBounds = false;

        Bitmap bitmap = BitmapFactory.decodeFileDescriptor(fileDescriptor, null, options);
        imageViewPic.setImageBitmap(bitmap);

        ByteArrayOutputStream stream = new ByteArrayOutputStream();
        bitmap.compress(Bitmap.CompressFormat.JPEG, 100, stream);
        // get byte array here
        byte[] picData = stream.toByteArray();
        ParseFile picFile = new ParseFile(picData);
        user.setProfilePicture(picFile);
    }
    catch(FileNotFoundException exc)
    {
        Log.i(TAG, "File not found: " + exc.toString());
    }
}

dumpImageMetaData(uri)を忘れてください。必要ありません
Rafa

0

積み上げる ポール・バークの答えに私は多くの問題を示唆し、「ビルトイン」の機能のほとんどは、ファイルに解決されませんパスを返すように、外部SDカードのURIパスの解決に直面していました。

しかし、これは彼の// TODOが非プライマリボリュームを処理する私のアプローチです

String resolvedPath = "";
File[] possibleExtSdComposites = context.getExternalFilesDirs(null);
for (File f : possibleExtSdComposites) {
    // Reset final path
    resolvedPath = "";

    // Construct list of folders
    ArrayList<String> extSdSplit = new ArrayList<>(Arrays.asList(f.getPath().split("/")));

    // Look for folder "<your_application_id>"
    int idx = extSdSplit.indexOf(BuildConfig.APPLICATION_ID);

    // ASSUMPTION: Expected to be found at depth 2 (in this case ExtSdCard's root is /storage/0000-0000/) - e.g. /storage/0000-0000/Android/data/<your_application_id>/files
    ArrayList<String> hierarchyList = new ArrayList<>(extSdSplit.subList(0, idx - 2));

    // Construct list containing full possible path to the file
    hierarchyList.add(tail);
    String possibleFilePath = TextUtils.join("/", hierarchyList);

    // If file is found --> success
    if (idx != -1 && new File(possibleFilePath).exists()) {
        resolvedPath = possibleFilePath;
        break;
    }
}

if (!resolvedPath.equals("")) {
    return resolvedPath;
} else {
    return null;
}

それはすべての電話メーカーで異なる可能性がある階層に依存することに注意してください-私はそれらすべてをテストしていません(Xperia Z3 API 23とSamsung Galaxy A3 API 23ではこれまでうまくいきました)。

他でうまく動かないか確認してください。


-1

@paul burkeの回答は、APIレベル19以上のカメラとギャラリーの両方の写真で正常に機能しますが、Androidプロジェクトの最小SDKが19未満に設定されている場合は機能しません。また、上記の一部の回答は、ギャラリーとギャラリーの両方で機能しません。カメラ。まあ、私は19未満のAPIレベルで機能する@paul burkeのコードを変更しました。以下はコードです。

public static String getPath(final Context context, final Uri uri) {

    final boolean isKitKat = Build.VERSION.SDK_INT >=
                             Build.VERSION_CODES.KITKAT;
    Log.i("URI",uri+"");
    String result = uri+"";

    // DocumentProvider
    // if (isKitKat && DocumentsContract.isDocumentUri(context, uri)) {
    if (isKitKat && (result.contains("media.documents"))) {

        String[] ary = result.split("/");
        int length = ary.length;
        String imgary = ary[length-1];
        final String[] dat = imgary.split("%3A");

        final String docId = dat[1];
        final String type = dat[0];

        Uri contentUri = null;
        if ("image".equals(type)) {
            contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;
        }
        else if ("video".equals(type)) {
        }
        else if ("audio".equals(type)) {
        }

        final String selection = "_id=?";
        final String[] selectionArgs = new String[] {
            dat[1]
        };

        return getDataColumn(context, contentUri, selection, selectionArgs);
    }
    else
    if ("content".equalsIgnoreCase(uri.getScheme())) {
        return getDataColumn(context, uri, null, null);
    }
    // File
    else if ("file".equalsIgnoreCase(uri.getScheme())) {
        return uri.getPath();
    }

    return null;
}

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

java.lang.IllegalArgumentExceptionを受け取ります:Googleドキュメントの画像を選択するときに、要求された列を提供できません
dirkoneill

@dirkoneill同じ例外が発生します。修正は見つかりましたか?
ヘンリー

-4

あなたの質問への答えはあなたが許可を持っている必要があるということです。manifest.xmlファイルに次のコードを入力します。

<uses-sdk  android:minSdkVersion="8"   android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-permission android:name="android.permission.WRITE_OWNER_DATA"></uses-permission>
<uses-permission android:name="android.permission.READ_OWNER_DATA"></uses-permission>`

それは私のために働いた...

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.