Android 4.4 (KitKat) पर Android गैलरी Intent.ACTION_GET_CONTENT के लिए अलग-अलग URI देता है


214

किटकैट से पहले (या नई गैलरी से पहले) Intent.ACTION_GET_CONTENTइस तरह एक यूआरआई लौटा दिया

सामग्री: // मीडिया / बाहरी / images / मीडिया / 3951।

फ़ाइल URL ContentResolverको MediaStore.Images.Media.DATAलौटाने के लिए और क्वाइरिंग का उपयोग करना ।

किटकैट में हालांकि गैलरी एक यूआरआई ("अंतिम" के माध्यम से) इस तरह लौटाती है:

सामग्री: //com.android.providers.media.documents/document/image: 3951

इससे मैं कैसे निपटूं?


21
कफ से, मुझे उस सामग्री का उपयोग करने के तरीके मिलेंगे जिसमें फ़ाइल तक सीधे पहुंच की आवश्यकता नहीं है। उदाहरण के लिए, यह Uriएक धारा के माध्यम से खुला होना चाहिए ContentResolver। मैं उन ऐप्स के बारे में लंबे समय से घबरा रहा हूं जो यह मानते हैं कि content:// Uriएक फ़ाइल का प्रतिनिधित्व करने वाला हमेशा एक में परिवर्तित हो सकता है File
कॉमन्सवेअर

1
@ CommonsWare, अगर मुझे sqlite db में एक इमेज पाथ बचाना है तो मैं इसे बाद में खोल सकता हूँ, क्या मुझे URI या निरपेक्ष फ़ाइल पाथ बचाना चाहिए?
नाग

2
@CommonsWare मैं आपकी घबराहट से सहमत हूँ। :-) हालाँकि, मुझे मूल कोड में फ़ाइल नाम (एक छवि के लिए) पास करने में सक्षम होना चाहिए। एक समाधान पूर्व-निर्दिष्ट स्थान InputStreamपर एक का उपयोग करके प्राप्त डेटा की प्रतिलिपि बनाना ContentResolverहै ताकि इसका एक ज्ञात फ़ाइल नाम हो। हालाँकि, यह मुझे बेकार लगता है। कोई अन्य सुझाव?
१।

2
@darrenp: Ummm ..., जेएनआई के साथ काम करने के लिए मूल कोड को फिर से लिखना InputStream? दुर्भाग्य से आपके लिए वह सभी विकल्प नहीं हैं।
कॉमन्सवेयर

1
यह जानना उपयोगी है। आपके प्रतिक्रिया के लिए धन्येवाद। जब से मुझे पता चला है कि हम अब फाइल के बजाय मेमोरी में C ++ को इमेज को पास कर रहे हैं, तो हम अब InputStreamफाइल के बजाय (जो बढ़िया है) का उपयोग कर सकते हैं । केवल EXIF ​​टैग पढ़ना थोड़ा मुश्किल है और ड्रू नोक की लाइब्रेरी की आवश्यकता है । आपकी टिप्पणियों के लिए बहुत, बहुत धन्यवाद।

जवाबों:


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
क्या आप इस बारे में विस्तार से जानना चाहेंगे कि किटकैट कोड क्या कर रहा है? क्या इसके लिए किसी नई अनुमति की आवश्यकता है? पूर्व किटकैट कोड मेरे लिए किटकैट पर भी काम करता है। तो मैं किटकैट के लिए एक अलग कोड का उपयोग क्यों करूंगा? धन्यवाद।
माइकल ग्रीफ़रेंडर

67
ऐसा लगता है कि हम नए sdks uri से पथ प्राप्त नहीं कर सकते हैं। इसके अलावा यह एक शर्म की बात है कि Google ने इस तरह के बदलाव को उचित डोक्यूमेन्टेशन और घोषणा के बिना किया है।
user65721

1
क्या आप बता सकते हैं कि फ़ाइल URL कैसे प्राप्त करें? मैं sdcard में वास्तविक पथ प्राप्त करना चाहूंगा। उदाहरण के लिए, यदि यह एक चित्र है, तो मैं इस पथ को दस्तावेज़ Uri के बजाय /storage/sdcard0/DCIM/Camera/IMG_20131118_153817_119.jpg प्राप्त करना चाहूंगा।
अल्वारो

4
किटकैट डॉक्स ( डेवलपर. android.com/about/versions/… ) पर आधारित यह ओपी को तब तक नहीं मिल सकता है जब तक कि वह अन्य एप्लिकेशन (नों) के स्वामित्व वाले दस्तावेजों का उपयोग / संपादन करने का इरादा न रखता हो। यदि ओपी पुराने संस्करणों के अनुरूप एक कॉपी या चीजें करना चाहता है, तो @voytez द्वारा उत्तर अधिक उपयुक्त होगा।
कॉलिन एम।

8
यह मेरे लिए काम नहीं कर रहा है। मुझे निम्नलिखित अपवाद मिलते हैं (स्टॉक 4.4.2 पर): E / AndroidRuntime (29204): इसके कारण: java.lang.SecurityException: अनुरोधित झंडे 0x1, लेकिन केवल 0x0 की अनुमति है
रसेल

177

इसके लिए किसी विशेष अनुमति की आवश्यकता नहीं है, और स्टोरेज एक्सेस फ्रेमवर्क, साथ ही अनौपचारिक 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 नेक्सस 5 दस्तावेज़ यूआई और कुछ अन्य पूर्ववर्ती किटकैट उपकरणों पर काल्पनिक रूप से काम करता था जो मानक गैलरी एप्लिकेशन का उपयोग करते हैं, धन्यवाद पॉल!
जोश

1
इस के लिए धन्यवाद, यह मुझे sdk 19 के साथ दूर करने के लिए उम्र ले लिया है !! मेरी समस्या यह है कि मेरा उपकरण फ़ाइल ब्राउज़र के रूप में Google ड्राइव का उपयोग कर रहा है। यदि फ़ाइल डिवाइस पर है तो छवि पथ ठीक हो गया है लेकिन यदि फ़ाइल ड्राइव पर है तो वह नहीं खुलती है। हो सकता है कि मुझे सिर्फ Google ड्राइव से चित्र खोलने से निपटने की आवश्यकता हो। बात यह है कि मेरा ऐप फ़ाइल पथ का उपयोग करने और इंसामलिंग का उपयोग करके छवि प्राप्त करने के लिए लिखा गया है ...
RuAware

2
@RuAware जब आप एक ड्राइव फ़ाइल का चयन करते हैं, तो यह वापस आ जाती है Authority: com.google.android.apps.docs.storageऔर Segments: [document, acc=1;doc=667]। मुझे यकीन नहीं है, लेकिन मान लें कि docमूल्य वह Uriआईडी है जिसके खिलाफ आप क्वेरी कर सकते हैं। आपको यहां "Android पर अपने ऐप को अधिकृत करें": Developers.google.com/drive/integrate-android-ui के रूप में विस्तृत करने की अनुमति की आवश्यकता होगी । यदि आप इसका पता लगाते हैं तो कृपया यहाँ अपडेट करें।
पॉल बर्क

30
यह बिल्कुल भयानक है! आपको इस तरह से "धोखा" देने वाले कोड का प्रचार नहीं करना चाहिए। यह केवल उन सोर्स ऐप्स को सपोर्ट करता है, जिन्हें आप पैटर्न के बारे में जानते हैं, और डॉक्यूमेंट प्रोवाइडर मॉडल का पूरा पॉइंट मनमाने स्त्रोतों को सपोर्ट करना है
j__m

2
_dataकाम नहीं होगा जब ContentProvider इसका समर्थन नहीं करता। यह @CommonsWare निर्देशों का पालन करने और पूर्ण फ़ाइल पथ का उपयोग न करने की अनुशंसा की जाती है , क्योंकि यह वास्तविक फ़ाइल के बजाय ड्रॉपबॉक्स क्लाउड में एक फ़ाइल हो सकती है।
सोशियल

67

एक ही समस्या थी, ऊपर दिए गए समाधान की कोशिश की, लेकिन हालांकि यह आम तौर पर काम करता था, किसी कारण से मुझे कुछ छवियों के लिए उरी सामग्री प्रदाता पर अनुमति अस्वीकार हो रही थी, हालांकि मेरे पास android.permission.MANAGE_DOCUMENTSअनुमति ठीक से जोड़ी गई थी ।

वैसे भी अन्य समाधान पाया गया जो कि 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 आपको अनुमति झंडे आदि को जारी रखने की आवश्यकता हो सकती है और आम तौर पर अक्सर सुरक्षा अपवाद होते हैं ...

अन्य समाधान ACTION_GET_CONTENTसंयुक्त का उपयोग करना है c.getContentResolver().openInputStream(selectedImageURI)जिसके साथ पूर्व-केके और केके दोनों पर काम करेंगे। किटकैट तब नए दस्तावेज़ दृश्य का उपयोग करेगा और यह समाधान फ़ोटो, गैलरी, फ़ाइल एक्सप्लोरर, ड्रॉपबॉक्स, Google ड्राइव आदि जैसे सभी ऐप्स के साथ काम करेगा ...) लेकिन याद रखें कि इस समाधान का उपयोग करते समय आपको अपनी छवि बनाना होगा onActivityResult()और इसे स्टोर करना होगा उदाहरण के लिए एसडी कार्ड। अगली ऐप लॉन्च पर सहेजे गए uri से इस छवि को फिर से बनाना, जब आप Google API डॉक्स में वर्णित अनुमति झंडे जोड़ते हैं, तब भी आप सामग्री रिज़ॉल्वर पर सुरक्षा अपवाद फेंक सकते हैं (यह तब हुआ जब मैंने कुछ परीक्षण किया)

इसके अतिरिक्त Android डेवलपर API दिशानिर्देश बताते हैं:

ACTION_OPEN_DOCUMENT का उद्देश्य ACTION_GET_CONTENT का प्रतिस्थापन नहीं है। आपको जो उपयोग करना चाहिए वह आपके ऐप की जरूरतों पर निर्भर करता है:

यदि आप चाहते हैं कि आपका ऐप केवल डेटा पढ़ने / आयात करने के लिए ACTION_GET_CONTENT का उपयोग करें। इस दृष्टिकोण के साथ, एप्लिकेशन डेटा की एक प्रति आयात करता है, जैसे कि एक छवि फ़ाइल।

यदि आप चाहते हैं कि आपके एप्लिकेशन में दीर्घकालिक, दस्तावेज़ प्रदाता के स्वामित्व वाले दस्तावेज़ों तक लगातार पहुंच हो, तो ACTION_OPEN_DOCUMENT का उपयोग करें। एक उदाहरण एक फोटो-संपादन ऐप होगा जो उपयोगकर्ताओं को दस्तावेज़ प्रदाता में संग्रहीत छवियों को संपादित करने देता है।


1
इस उत्तर में मेरे उद्देश्यों की सही जानकारी थी। सशर्त रूप से किटकैट पर ACTION_PICK और EXTERNAL_CONTENT_URI का उपयोग करके उसी तरह से सामग्री के माध्यम से गैलरी में Images के बारे में मेटा-डेटा प्राप्त करने की समान क्षमता प्रदान की, जैसे पुराने संस्करणों पर केवल ACTION -GET_CONTENT का उपयोग करके संभव है।
कॉलिन एम।

@voytez, क्या यह URI आपके संदेश के माध्यम से छवि के पूर्ण वास्तविक पथ में परिवर्तित हो सकता है?
सांप

मेरा मानना ​​है कि, यह किटकैट से पहले की तरह काम करना चाहिए क्योंकि यह कोड केके दस्तावेजों के दृश्य के बजाय छवि गैलरी खोलने के लिए मजबूर करता है। लेकिन अगर आप इसे छवि बनाने के लिए उपयोग करने का इरादा रखते हैं तो यह समाधान बेहतर है क्योंकि वास्तविक पथ में परिवर्तित करना एक अतिरिक्त अप्राकृतिक कदम है।
वोयटज

4
मेरे बदले भी काम किया Intent.ACTION_GET_CONTENT। वैसे भी मैंने उपयोगकर्ता को ब्राउज़िंग के लिए ऐप चुनने देने के लिए Intent.createChooser()रैपर को नए पर रखा Intent, और उम्मीद के मुताबिक काम किया। क्या कोई इस समाधान के लिए कमियां देख सकता है?
लोरेंजो-एस

1
किसी को भी, जो सोच रहा है के लिए डेवलपर
snark

38

जैसा कि कॉमन्सवेयर ने उल्लेख किया है, आपको यह नहीं मान लेना चाहिए, कि आपके द्वारा प्राप्त की जाने वाली स्ट्रीम 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) {

    }

बेशक यदि आप बड़ी छवियों को संभालते हैं, तो आपको उन्हें उपयुक्त के साथ लोड करना चाहिए inSampleSize: http://developer.android.com/training/displaying-bitmaps/load-bitmap.html । लेकिन यह एक और विषय है।


यह मेरे लिए नेक्सस 4 रनिंग किटकैट के साथ काम नहीं कर रहा है, लेकिन यह गैलेक्सी एस 3 के साथ 4.1.2 पर चल रहा है
दान 2552

@ Dan2552 कौन सा हिस्सा काम नहीं कर रहा है? क्या आपको कोई अपवाद मिलता है?
मिशैल के

बाहर मुड़कर मैं गैलरी के लिए गलत इरादे से कॉल का उपयोग कर रहा था। मैं एक का उपयोग कर रहा था जो किसी भी तरह के दस्तावेजों के लिए था, लेकिन एक फ़ाइल एक्सटेंशन फ़िल्टर के साथ।
14:25 पर Dan2552

2
क्या एक सुंदर सरल जवाब है, धन्यवाद! इस उत्तर का अनुसरण करने वाले अन्य लोगों के लिए 'cxt' वर्तमान संदर्भ को संदर्भित करता है और आमतौर पर 'यह' होगा।
थोमसफोर्थ

1
इसका मतलब यह है कि फ़ाइल अभी वहाँ नहीं है। URI ठीक लगता है।
मिशैल के

33

मेरा मानना ​​है कि पहले से ही पोस्ट की गई प्रतिक्रियाओं को लोगों को सही दिशा में जाना चाहिए। हालाँकि यहाँ मैंने वही किया जो उस विरासत कोड के लिए समझ में आता था जिसे मैं अपडेट कर रहा था। विरासत कोड यूआरआई को गैलरी से बदलकर और फिर छवियों को बचाने के लिए उपयोग कर रहा था।

4.4 (और Google ड्राइव) से पहले, URI इस तरह दिखेंगे: सामग्री: // मीडिया / बाहरी / चित्र / मीडिया / 41

जैसा कि सवाल में कहा गया है, वे अधिक बार इस तरह दिखते हैं: सामग्री: //com.android.providers.media.documents/document/image: 3951

चूंकि मुझे छवियों को बचाने और पहले से मौजूद कोड को परेशान न करने की क्षमता की आवश्यकता थी, इसलिए मैंने बस गैलरी से ऐप के डेटा फ़ोल्डर में 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 को FileOutputStream में InputStream कॉपी करने के लिए करता है। कोड पोस्ट नहीं किया गया है।


बहुत चालाक है। मैं भी वास्तविक फ़ाइल uri की जरूरत है
अधिक से अधिक

आप मेरे हीरो हैं, यह वही है जो मुझे चाहिए था! Google डिस्क फ़ाइलों के लिए भी बढ़िया काम करता है
3

बॉक्स से बाहर सोचो, है ना? : D यह कोड ठीक उसी तरह काम करता है जैसे मैं उम्मीद कर रहा था।
17

2
copyAndClose के लिए कोड पोस्ट करें, उत्तर पूर्ण नहीं है
बार्टेक पैकिया

24

बस यह कहना चाहता था कि यह उत्तर शानदार है और मैं इसे लंबे समय से समस्याओं के बिना उपयोग कर रहा हूं। लेकिन कुछ समय पहले मैंने एक समस्या पर ठोकर खाई है कि डाउनलोडप्रोविडर प्रारूप में यूआरआई देता है content://com.android.providers.downloads.documents/document/raw%3A%2Fstorage%2Femulated%2F0%2FDownload%2Fdoc.pdfऔर इसलिए NumberFormatExceptionजब तक इसके यूरी खंडों को पार्स करना असंभव है, तब तक ऐप दुर्घटनाग्रस्त हो जाता है। लेकिन raw:सेगमेंट में डायरेक्ट यूआरआई शामिल है जिसका उपयोग संदर्भित फाइल को पुनः प्राप्त करने के लिए किया जा सकता है। इसलिए मैंने 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

मैंने एक कार्य समाधान में कई उत्तरों को संयोजित किया है जो फ़ाइल पथ के साथ परिणाम करता है

उदाहरण के उद्देश्य के लिए माइम प्रकार अप्रासंगिक है।

            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 () / बाह्य के साथ उरी लौट रहा था और यह पथ नहीं लौट रहा था। मैंने इसे और जोड़ा (अगर "सामग्री" .equalsIgnoreCase (uri.getScheme ())) ब्लॉक और यह अब अच्छा काम करता है .. क्या आप बता सकते हैं कि यह क्या करता है
FaisalAhmed

filePath null हो रही है .. uri में: कंटेंट: //com.android.externalstorage.documents/document/799B-1419%3AScreenshot%2FScreenshot_20181117_162826 .png
भावेश मोरदिया

7

सवाल

URI से वास्तविक फ़ाइल पथ कैसे प्राप्त करें

उत्तर

मेरी जानकारी के लिए, हमें URI से फ़ाइल पथ प्राप्त करने की आवश्यकता नहीं है क्योंकि अधिकांश मामलों के लिए हम अपने कार्य को प्राप्त करने के लिए सीधे URI का उपयोग कर सकते हैं (जैसे 1. बिटमैप प्राप्त करना 2. किसी फ़ाइल को सर्वर पर भेजना, आदि) ।)

1. सर्वर पर भेजा जा रहा है

हम सीधे यूआरआई का उपयोग करके फ़ाइल को सीधे सर्वर पर भेज सकते हैं।

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 से एक BitMap प्राप्त करना

यदि यूआरआई छवि की ओर इशारा कर रहा है तो हमें बिटमैप मिलेगा, अन्यथा शून्य:

/**
 * 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. एंड्रॉइड यूआरआई से फ़ाइल पथ प्राप्त करने के लिए कोई भी तरीका प्रदान नहीं करता है, और ऊपर दिए गए अधिकांश उत्तर में हमने कुछ स्थिरांक को हार्ड कोडित किया है, जो कि फीचर रिलीज़ में टूट सकता है (क्षमा करें, मैं गलत हो सकता है)।
  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

धन्यवाद। इस तरह से उड़ी और ContentResolver का उपयोग करते हुए फ़ाइलों के साथ काम करते समय मेरे आवेदन को काफी सरल बना दिया।
जैकसनजज

6

यह एंड्रॉइड लाइब्रेरी किटकैट (पुराने संस्करणों - 2.1+ सहित) में परिवर्तन को संभालती है:
https://github.com/iPaulPro/aFileChooser

String path = FileUtils.getPath(context, uri)लौटे उड़ी को सभी OS संस्करण पर प्रयोग करने योग्य पथ स्ट्रिंग में बदलने के लिए उपयोग करें । इसके बारे में अधिक यहाँ देखें: https://stackoverflow.com/a/20559175/860488


3

उन लोगों के लिए जो अभी भी @ SDa Burke का कोड Android SDK संस्करण 23 और इसके बाद के संस्करण का उपयोग कर रहे हैं, अगर आपकी परियोजना ने यह कहते हुए त्रुटि को पूरा किया कि आप EXTERNAL_PERMISSION को याद कर रहे हैं, और आप बहुत निश्चित रूप से अपने AndroidManifest.xml फ़ाइल में उपयोगकर्ता-अनुमति जोड़ चुके हैं। ऐसा इसलिए है क्योंकि आप एंड्रॉइड एपीआई 23 या इसके बाद के संस्करण में हो सकते हैं और रनटाइम में फ़ाइल को एक्सेस करने के लिए कार्रवाई करते समय Google फिर से अनुमति की गारंटी देना आवश्यक बनाता है।

इसका मतलब है कि: यदि आपका एसडीके संस्करण 23 या उससे अधिक है, तो आपसे READ & WRITE की अनुमति मांगी जाती है, जबकि आप चित्र फ़ाइल का चयन कर रहे हैं और इसका URI जानना चाहते हैं।

और पॉल बर्क के समाधान के अलावा, मेरा कोड निम्नलिखित है। मैं इन कोड को जोड़ता हूं और मेरा प्रोजेक्ट ठीक काम करना शुरू कर देता है।

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 के लिए पूछ रहे हैं:

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

मेरे मामले में, कम्पेटिटिल्स.जावा वह जगह है जहां मैं वेरिफस्ट्रेजपाइन्स विधि को परिभाषित करता हूं (स्थिर प्रकार के रूप में ताकि मैं इसे अन्य गतिविधि के भीतर कॉल कर सकूं)।

यह भी अधिक समझ में आता है कि यदि आप पहले राज्य बनाते हैं तो यह देखने के लिए कि क्या वर्तमान SDK संस्करण 23 से ऊपर है या नहीं इससे पहले कि आप VerstStoragePokes विधि को कॉल करें।


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()विधि पदावनत है, इसलिए मैं इसका उपयोग नहीं कर रहा हूं।

यह उत्तर प्रश्न 3 पर m3n0R से है Android को Uri.getPath () द्वारा वास्तविक पथ मिलता है और मैं दावा करता हूं कि कोई क्रेडिट नहीं है। मैंने अभी सोचा था कि जिन लोगों ने इस मुद्दे को हल नहीं किया है वे अभी तक इसका उपयोग कर सकते हैं।


2
यह किटकैट पर नए गैलरी ऐप (कड़ाई से "मीडिया दस्तावेज़ प्रदाता" ऐप) का जवाब नहीं है।
नागोया0

ऐप जिसे प्रश्नकर्ता "गैलरी" कहता है, वह शायद किटकैट पर नया फ़ाइल पिकर है। जानकारी के लिए: 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 संरक्षित शून्य onActivityResult (int requestCode, int resultCode, आशय डेटा) {

    //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();
        }


    }

आप दूसरे मामले में छवि कहां प्रदर्शित कर रहे हैं?
क्वांटम_ वीसी

क्षमा करें, यदि मैं mImgCropping.startCropImage (photoFile, AppConstants.REQUEST_IMAGE_CROP) में कोड की इस पंक्ति को जोड़ने में विफल रहा; फिर मेरी परियोजना की जरूरत के अनुसार इमेजक्रॉपिंग फ़ंक्शन को कॉल करने की आवश्यकता है
सरनाया

फ़ाइल प्रकार क्या है PhotoFile और mImgCropping?
फिलिप बीएच

1

अगर किसी की दिलचस्पी है, तो मैंने इसके लिए एक काम करने वाला कोटलिन संस्करण बनाया 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)
}

मुझे बस कोटलिन का वर्किंग कोड चाहिए। यह मेरे लिए काम है। धन्यवाद
हरवी सरजा

1

मैंने यहां कई उत्तरों की कोशिश की है, और मुझे लगता है कि मेरे पास एक समाधान है जो हर बार काम करेगा और अनुमतियाँ भी प्रबंधित करेगा।

यह LEO के चतुर समाधान पर आधारित है। इस पोस्ट में यह काम करने के लिए आवश्यक सभी कोड होने चाहिए, और इसे किसी भी फ़ोन और Android संस्करण पर काम करना चाहिए;)

एसडी कार्ड से फ़ाइल लेने की क्षमता रखने के लिए, आपको अपने मेनिफ़ेस्ट में इसकी आवश्यकता होगी:

<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

अनुमति की जाँच करें और यदि संभव हो तो लॉन्च करें

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

यह कुल हैक है, लेकिन यहां मैंने क्या किया ...

इसलिए डॉक्यूमेंटसपॉइडर की स्थापना के साथ खेलते समय , मैंने देखा कि सैंपल कोड ( getDocIdForFileलाइन के चारों ओर 450), आपके द्वारा निर्दिष्ट रूट के सापेक्ष फ़ाइल (यूनिक) पथ के आधार पर चयनित डॉक्युमेंट के लिए एक यूनिक आईडी बनाता है (जो है) आपने mBaseDirलाइन 96 पर क्या सेट किया है)।

तो यूआरआई कुछ इस तरह देख रहा है:

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

जैसा कि डॉक्स कहते हैं, यह केवल एक ही रूट मान रहा है (मेरे मामले में, Environment.getExternalStorageDirectory()लेकिन आप कहीं और उपयोग कर सकते हैं ... तो यह फ़ाइल पथ लेता है, रूट पर शुरू होता है, और इसे विशिष्ट आईडी बनाता है, " 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.
}

मुझे पता है। यह शर्मनाक है, लेकिन इसने काम किया। फिर से, यह दस्तावेज़ आईडी जनरेट करने के लिए आपके ऐप में अपने स्वयं के दस्तावेज़ प्रदाता का उपयोग करने पर निर्भर करता है ।

(इसके अलावा, पथ बनाने के लिए एक बेहतर तरीका है जो यह नहीं मानता है "/" ​​पथ विभाजक है, आदि। लेकिन आपको यह विचार मिलता है।)


अपने आप को भी एक पागल विचार के साथ जवाब देने के लिए - यदि आपका ऐप पहले से ही file://एक बाहरी फ़ाइल पिकर से इंटेंट को संभाल रहा है , तो आप प्राधिकरण की जांच भी कर सकते हैं, जैसा कि ऊपर दिए गए उदाहरण में यह सुनिश्चित करना है कि यह आपके कस्टम प्रदाता से है, और यदि आप ऐसा कर सकते हैं। file://फिर आपके द्वारा निकाले गए पथ का उपयोग करके एक नए इरादे से "फोर्ज" करने के लिए पथ का उपयोग करें, StartActivity()और अपने ऐप को इसे लेने दें। मुझे पता है, भयानक।
फतवीर

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

डंपइमेजमेटाडाटा (यूरी) को भूल जाओ; यह अनावश्यक है
राफा

0

पॉल बर्क के जवाब पर निर्माण करना, मुझे बाहरी एसडी कार्ड के यूआरआई पथ को हल करने में कई समस्याओं का सामना करना पड़ा क्योंकि अधिकांश सुझाए गए "अंतर्निहित" फ़ंक्शंस रिटर्न पथ हैं जो फ़ाइलों के लिए हल नहीं होते हैं।

हालांकि, यह मेरा // 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;
}

नोट यह पदानुक्रम पर निर्भर करता है जो हर फोन निर्माता पर अलग हो सकता है - मैंने उन सभी का परीक्षण नहीं किया है (यह एक्सपीरिया जेड 3 एपीआई 23 और सैमसंग गैलेक्सी ए 3 एपीआई 23 पर अब तक अच्छा काम किया है)।

कृपया पुष्टि करें कि क्या यह कहीं और अच्छा प्रदर्शन नहीं करता है।


-1

@paul burke का उत्तर API स्तर 19 और उससे ऊपर के कैमरा और गैलरी चित्रों दोनों के लिए ठीक काम करता है, लेकिन यह काम नहीं करता है यदि आपके Android प्रोजेक्ट की न्यूनतम SDK 19 से नीचे है, और ऊपर दिए गए कुछ उत्तर गैलरी और दोनों के लिए काम नहीं करते हैं कैमरा। खैर, मैंने @paul burke का कोड संशोधित किया है जो 19 से नीचे एपीआई स्तर के लिए काम करता है। नीचे कोड है।

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

आपके प्रश्न का उत्तर यह है कि आपको अनुमतियाँ चाहिए। अपनी मैनिफ़ेस्ट.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>`

इसने मेरे लिए काम किया ...

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.