फ़ाइल की जानकारी वापस लाई जा रही है

इससे पहले कि कोई क्लाइंट ऐप्लिकेशन किसी ऐसी फ़ाइल के साथ काम करने की कोशिश करे जिसके लिए उसका कॉन्टेंट यूआरआई हो, ऐप्लिकेशन यह काम कर सकता है: सर्वर ऐप्लिकेशन से फ़ाइल के बारे में जानकारी मांग सकता है. इसमें फ़ाइल का डेटा टाइप और फ़ाइल आकार. डेटा टाइप से, क्लाइंट ऐप्लिकेशन को यह तय करने में मदद मिलती है कि वह फ़ाइल को मैनेज कर सकता है या नहीं, और फ़ाइल साइज़ की मदद से क्लाइंट ऐप्लिकेशन, फ़ाइल के लिए बफ़रिंग और कैश मेमोरी को सेट अप कर सकता है.

इस लेसन में बताया गया है कि सर्वर ऐप्लिकेशन की क्वेरी कैसे करें फ़ाइल के MIME टाइप और साइज़ को वापस पाने के लिए, FileProvider.

फ़ाइल का MIME प्रकार फिर से पाएं

फ़ाइल के डेटा टाइप से क्लाइंट ऐप्लिकेशन को पता चलता है कि उसे फ़ाइल के कॉन्टेंट को कैसे मैनेज करना चाहिए. पाने के लिए किसी शेयर की गई फ़ाइल का डेटा टाइप, जिसका कॉन्टेंट यूआरआई, क्लाइंट ऐप्लिकेशन कॉल करता है ContentResolver.getType(). इस तरीके से नतीजे मिलते हैं . डिफ़ॉल्ट रूप से, FileProvider, फ़ाइल का MIME टाइप तय करता है फ़ाइल नाम का एक्सटेंशन है.

नीचे दिया गया कोड स्निपेट बताता है कि क्लाइंट ऐप्लिकेशन, फ़ाइल के एमआईएमई टाइप को एक बार कैसे हासिल करता है सर्वर ऐप्लिकेशन ने क्लाइंट को कॉन्टेंट यूआरआई दिखाया है:

Kotlin

    ...
    /*
     * Get the file's content URI from the incoming Intent, then
     * get the file's MIME type
     */
    val mimeType: String? = returnIntent.data?.let { returnUri ->
        contentResolver.getType(returnUri)
    }
    ...

Java

    ...
    /*
     * Get the file's content URI from the incoming Intent, then
     * get the file's MIME type
     */
    Uri returnUri = returnIntent.getData();
    String mimeType = getContentResolver().getType(returnUri);
    ...

फ़ाइल का नाम और आकार वापस पाना

FileProvider क्लास में, डिफ़ॉल्ट रूप से query() तरीका जो नतीजे के तौर पर इसमें कॉन्टेंट यूआरआई से जुड़ी फ़ाइल का नाम और साइज़ Cursor. डिफ़ॉल्ट रूप से लागू होने पर, दो कॉलम दिखते हैं:

DISPLAY_NAME
अभी तक किसी भी व्यक्ति ने चेक इन नहीं किया है String के तौर पर, फ़ाइल का नाम. यह वैल्यू, दिखाई गई वैल्यू के बराबर है File.getName() ने बनाया.
SIZE
अभी तक किसी भी व्यक्ति ने चेक इन नहीं किया है long के तौर पर, फ़ाइल का साइज़ बाइट में. यह वैल्यू, वैल्यू के बराबर है File.length() की ओर से लौटाया गया

सभी सेटिंग लागू करने पर, क्लाइंट ऐप्लिकेशन किसी फ़ाइल के लिए DISPLAY_NAME और SIZE, दोनों पा सकता है query() के तर्क का कॉन्टेंट यूआरआई को छोड़कर null. उदाहरण के लिए, यह कोड स्निपेट किसी फ़ाइल DISPLAY_NAME और SIZE और हर जानकारी को अलग-अलग दिखाती है TextView:

Kotlin

    /*
     * Get the file's content URI from the incoming Intent,
     * then query the server app to get the file's display name
     * and size.
     */
    returnIntent.data?.let { returnUri ->
        contentResolver.query(returnUri, null, null, null, null)
    }?.use { cursor ->
        /*
         * Get the column indexes of the data in the Cursor,
         * move to the first row in the Cursor, get the data,
         * and display it.
         */
        val nameIndex = cursor.getColumnIndex(OpenableColumns.DISPLAY_NAME)
        val sizeIndex = cursor.getColumnIndex(OpenableColumns.SIZE)
        cursor.moveToFirst()
        findViewById<TextView>(R.id.filename_text).text = cursor.getString(nameIndex)
        findViewById<TextView>(R.id.filesize_text).text = cursor.getLong(sizeIndex).toString()
        ...
    }

Java

    ...
    /*
     * Get the file's content URI from the incoming Intent,
     * then query the server app to get the file's display name
     * and size.
     */
    Uri returnUri = returnIntent.getData();
    Cursor returnCursor =
            getContentResolver().query(returnUri, null, null, null, null);
    /*
     * Get the column indexes of the data in the Cursor,
     * move to the first row in the Cursor, get the data,
     * and display it.
     */
    int nameIndex = returnCursor.getColumnIndex(OpenableColumns.DISPLAY_NAME);
    int sizeIndex = returnCursor.getColumnIndex(OpenableColumns.SIZE);
    returnCursor.moveToFirst();
    TextView nameView = (TextView) findViewById(R.id.filename_text);
    TextView sizeView = (TextView) findViewById(R.id.filesize_text);
    nameView.setText(returnCursor.getString(nameIndex));
    sizeView.setText(Long.toString(returnCursor.getLong(sizeIndex)));
    ...

इससे जुड़ी अतिरिक्त जानकारी के लिए, इन्हें देखें: