जब कोई ऐप्लिकेशन, किसी अन्य ऐप्लिकेशन के ज़रिए शेयर की गई फ़ाइल को ऐक्सेस करना चाहता है, तो अनुरोध करने वाला ऐप्लिकेशन (क्लाइंट) आम तौर पर, फ़ाइलें शेयर करने वाले ऐप्लिकेशन (सर्वर) को अनुरोध भेजता है. ज़्यादातर मामलों में, अनुरोध
सर्वर ऐप्लिकेशन में Activity
शुरू करता है, जो उन फ़ाइलों को दिखाता है जिन्हें वह शेयर कर सकता है.
उपयोगकर्ता कोई फ़ाइल चुनता है. इसके बाद, सर्वर ऐप्लिकेशन, क्लाइंट ऐप्लिकेशन को फ़ाइल के कॉन्टेंट का यूआरआई दिखाता है.
इस लेसन में आपको दिखाया जाता है कि क्लाइंट ऐप्लिकेशन, सर्वर ऐप्लिकेशन से फ़ाइल का अनुरोध कैसे करता है, सर्वर ऐप्लिकेशन से फ़ाइल का कॉन्टेंट यूआरआई कैसे पाता है, और कॉन्टेंट यूआरआई का इस्तेमाल करके फ़ाइल कैसे खोलता है.
फ़ाइल के लिए अनुरोध भेजना
सर्वर ऐप्लिकेशन से किसी फ़ाइल का अनुरोध करने के लिए, क्लाइंट ऐप्लिकेशन, startActivityForResult
को कॉल करता है. इस कॉल में, Intent
होता है. इसमें ACTION_PICK
जैसी कार्रवाई और MIME टाइप शामिल होता है, जिसे क्लाइंट ऐप्लिकेशन मैनेज कर सकता है.
उदाहरण के लिए, यहां दिए गए कोड स्निपेट में, फ़ाइल शेयर करना में बताए गए Activity
को शुरू करने के लिए, किसी सर्वर ऐप्लिकेशन को Intent
भेजने का तरीका बताया गया है:
Kotlin
class MainActivity : Activity() { private lateinit var requestFileIntent: Intent private lateinit var inputPFD: ParcelFileDescriptor ... override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) requestFileIntent = Intent(Intent.ACTION_PICK).apply { type = "image/jpg" } ... } ... private fun requestFile() { /** * When the user requests a file, send an Intent to the * server app. * files. */ startActivityForResult(requestFileIntent, 0) ... } ... }
Java
public class MainActivity extends Activity { private Intent requestFileIntent; private ParcelFileDescriptor inputPFD; ... @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); requestFileIntent = new Intent(Intent.ACTION_PICK); requestFileIntent.setType("image/jpg"); ... } ... protected void requestFile() { /** * When the user requests a file, send an Intent to the * server app. * files. */ startActivityForResult(requestFileIntent, 0); ... } ... }
जिस फ़ाइल के लिए अनुरोध किया गया है उसे ऐक्सेस करें
सर्वर ऐप्लिकेशन, फ़ाइल के कॉन्टेंट यूआरआई को क्लाइंट ऐप्लिकेशन पर फिर से भेजता है. यह Intent
, onActivityResult()
के बदले क्लाइंट ऐप्लिकेशन को भेजा जाता है. जब
क्लाइंट ऐप्लिकेशन में फ़ाइल का कॉन्टेंट यूआरआई होता है, तो वह उसका
FileDescriptor
हासिल करके, फ़ाइल को ऐक्सेस कर सकता है.
इस प्रोसेस में फ़ाइल की सुरक्षा सिर्फ़ तब तक ही रखी जाती है, जब तक क्लाइंट ऐप्लिकेशन को मिलने वाले कॉन्टेंट यूआरआई को सही तरीके से पार्स किया जाता है. कॉन्टेंट को पार्स करते समय, आपको यह पक्का करना होगा कि यह यूआरआई, तय की गई डायरेक्ट्री के बाहर की किसी भी चीज़ पर लेकर न ले जाए, ताकि यह पक्का किया जा सके कि कोई पाथ ट्रैवर्सल न हो. सिर्फ़ क्लाइंट ऐप्लिकेशन को फ़ाइल का ऐक्सेस मिलना चाहिए. साथ ही, यह ऐक्सेस सिर्फ़ उन अनुमतियों के लिए होना चाहिए जिन्हें सर्वर ऐप्लिकेशन ने दिया है. अनुमतियां कुछ समय के लिए ही मिलती हैं. इसलिए, क्लाइंट ऐप्लिकेशन का टास्क स्टैक पूरा होने के बाद, फ़ाइल को सर्वर ऐप्लिकेशन के बाहर ऐक्सेस नहीं किया जा सकता.
अगला स्निपेट दिखाता है कि क्लाइंट ऐप्लिकेशन, सर्वर ऐप्लिकेशन से भेजे गए
Intent
को कैसे मैनेज करता है. साथ ही, यह भी दिखाता है कि क्लाइंट ऐप्लिकेशन, कॉन्टेंट यूआरआई का इस्तेमाल करके
FileDescriptor
कैसे लेता है:
Kotlin
/* * When the Activity of the app that hosts files sets a result and calls * finish(), this method is invoked. The returned Intent contains the * content URI of a selected file. The result code indicates if the * selection worked or not. */ public override fun onActivityResult(requestCode: Int, resultCode: Int, returnIntent: Intent) { // If the selection didn't work if (resultCode != Activity.RESULT_OK) { // Exit without doing anything else return } // Get the file's content URI from the incoming Intent returnIntent.data?.also { returnUri -> /* * Try to open the file for "read" access using the * returned URI. If the file isn't found, write to the * error log and return. */ inputPFD = try { /* * Get the content resolver instance for this context, and use it * to get a ParcelFileDescriptor for the file. */ contentResolver.openFileDescriptor(returnUri, "r") } catch (e: FileNotFoundException) { e.printStackTrace() Log.e("MainActivity", "File not found.") return } // Get a regular file descriptor for the file val fd = inputPFD.fileDescriptor ... } }
Java
/* * When the Activity of the app that hosts files sets a result and calls * finish(), this method is invoked. The returned Intent contains the * content URI of a selected file. The result code indicates if the * selection worked or not. */ @Override public void onActivityResult(int requestCode, int resultCode, Intent returnIntent) { // If the selection didn't work if (resultCode != RESULT_OK) { // Exit without doing anything else return; } else { // Get the file's content URI from the incoming Intent Uri returnUri = returnIntent.getData(); /* * Try to open the file for "read" access using the * returned URI. If the file isn't found, write to the * error log and return. */ try { /* * Get the content resolver instance for this context, and use it * to get a ParcelFileDescriptor for the file. */ inputPFD = getContentResolver().openFileDescriptor(returnUri, "r"); } catch (FileNotFoundException e) { e.printStackTrace(); Log.e("MainActivity", "File not found."); return; } // Get a regular file descriptor for the file FileDescriptor fd = inputPFD.getFileDescriptor(); ... } }
openFileDescriptor()
वाला तरीका, फ़ाइल के लिए ParcelFileDescriptor
दिखाता है. इस ऑब्जेक्ट से, क्लाइंट ऐप्लिकेशन को FileDescriptor
ऑब्जेक्ट मिलता है. इसका इस्तेमाल करके, वह फ़ाइल को पढ़ सकता है.
इस बारे में ज़्यादा जानकारी के लिए, ये लेख पढ़ें: