Android में Uri के लिए एक फ़ाइल पथ परिवर्तित करें


86

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

फ़ाइल पथ मुझे मिल रहा है:

/storage/emulated/0/DCIM/Camera/20141219_133139.mp4

मुझे इस तरह की आवश्यकता है:

content//media/external/video/media/18576.

यह मेरा कोड है।

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        // if the result is capturing Image

         if (requestCode == CAMERA_CAPTURE_VIDEO_REQUEST_CODE) {
            if (resultCode == RESULT_OK) {
                // video successfully recorded
                // preview the recorded video
                // selectedImageUri = data.getData();
                // Uri selectedImage = data.getData();
                previewVideo();

                tv1.setText(String.valueOf((fileUri.getPath())));
                String bedroom=String.valueOf((fileUri.getPath()));
                Intent i = new Intent();
                i.putExtra(bhk1.BEDROOM2, bedroom);
                setResult(RESULT_OK,i); 
                btnRecordVideo.setText("ReTake Video");

            } else if (resultCode == RESULT_CANCELED) {
                // user cancelled recording
                Toast.makeText(getApplicationContext(),
                        "User cancelled video recording", Toast.LENGTH_SHORT)
                        .show();
            } else {
                // failed to record video
                Toast.makeText(getApplicationContext(),
                        "Sorry! Failed to record video", Toast.LENGTH_SHORT)
                        .show();
            }
        }
    }

मुझे स्ट्रिंग चर से उड़ी की आवश्यकता है bedroom



// Uri selectedImage = data.getData();। अच्छा .. क्या वह आपका यूरी नहीं है?
ग्रीनपार्क

1
fileUri.getPath()। फ़ाइलपथ क्या है? आपको बताना / दिखाना चाहिए था!
ग्रीनपार्क

I am getting the path is /storage/emulated/0/DCIM/Camera/20141219_133139.mp4। कहाँ पे? हमें अनुमान लगाना होगा?
ग्रीनपार्क

वीडियो रिकॉर्ड करने के बाद स्टोरेज पाथ पाथ / स्टोरेज/emulated/0/DCIM/Camera/20141219_133139.mp4.i को इस कंटेंट को लाइक करना होगा // मीडिया / एक्सटर्नल / वीडियो / मीडिया / 18576
विनोद कुमार कुमार

जवाबों:


244

कृपया निम्न कोड का प्रयास करें

Uri.fromFile(new File("/sdcard/sample.jpg"))

यहाँ पर एक नज़र रखना मददगार हो सकता है: stackoverflow.com/questions/38200282/…
10101010

2
आप file.toUri()
कोटलिन के

@grrigore मुझे लगता है कि आप toURI का मतलब है () जो java.net पैकेज से संबंधित है।
केएमसी

@KMC डेवलपर. android.com/reference/kotlin/androidx/core/net/… यह वही है जिसके बारे में मैं बात कर रहा हूं
grrigore

20

इस प्रश्न के लिए सामान्य उत्तर यदि आप वास्तव में कुछ प्राप्त करना चाहते हैं content//media/external/video/media/18576(जैसे आपके वीडियो के लिए निरपेक्ष पथ) और न सिर्फ file///storage/emulated/0/DCIM/Camera/20141219_133139.mp4:

MediaScannerConnection.scanFile(this,
          new String[] { file.getAbsolutePath() }, null,
          new MediaScannerConnection.OnScanCompletedListener() {
      public void onScanCompleted(String path, Uri uri) {
          Log.i("onScanCompleted", uri.getPath());
      }
 });

स्वीकृत उत्तर गलत है (क्योंकि यह वापस नहीं आएगा content//media/external/video/media/*)

Uri.fromFile(file).toString()केवल कुछ ऐसा लौटाता है, file///storage/emulated/0/*जो sdcard पर फ़ाइल का एक सरल निरपेक्ष पथ है, लेकिन file//उपसर्ग (योजना) के साथ

आप Android के डेटाबेस का contentउपयोग करके भी uri प्राप्त कर सकते हैंMediaStore

परीक्षण (क्या रिटर्न Uri.fromFileऔर क्या रिटर्न MediaScannerConnection):

File videoFile = new File("/storage/emulated/0/video.mp4");

Log.i(TAG, Uri.fromFile(videoFile).toString());

MediaScannerConnection.scanFile(this, new String[] { videoFile.getAbsolutePath() }, null,
        (path, uri) -> Log.i(TAG, uri.toString()));

आउटपुट:

I / टेस्ट: फ़ाइल: ///storage/emulated/0/video.mp4

I / टेस्ट: सामग्री: // मीडिया / बाहरी / वीडियो / मीडिया / 268927


क्या बीच का अंतर content//और file///, मैं क्योंकि मेरे मामले में दोनों काम करता है पूछना
आर्य अग्रवाल

0

18 एपीआई से पहले नीचे कोड ठीक काम करता है: -

public String getRealPathFromURI(Uri contentUri) {

        // can post image
        String [] proj={MediaStore.Images.Media.DATA};
        Cursor cursor = managedQuery( contentUri,
                        proj, // Which columns to return
                        null,       // WHERE clause; which rows to return (all rows)
                        null,       // WHERE clause selection arguments (none)
                        null); // Order-by clause (ascending by name)
        int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
        cursor.moveToFirst();

        return cursor.getString(column_index);
}

किटकैट पर नीचे दिए गए कोड का उपयोग: -

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

अधिक जानकारी के लिए नीचे लिंक देखें: -

https://github.com/iPaulPro/aFileChooser/blob/master/aFileChooser/src/com/ipaulpro/afilechooser/utils/FileUtils.java

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