যখন একটি অ্যাপ অন্য অ্যাপের শেয়ার করা ফাইল অ্যাক্সেস করতে চায়, তখন অনুরোধকারী অ্যাপ (ক্লায়েন্ট) সাধারণত ফাইলগুলি (সার্ভার) শেয়ার করা অ্যাপের কাছে একটি অনুরোধ পাঠায়। বেশিরভাগ ক্ষেত্রে, অনুরোধটি সার্ভার অ্যাপে একটি Activity
শুরু করে যা এটি শেয়ার করতে পারে এমন ফাইলগুলি প্রদর্শন করে৷ ব্যবহারকারী একটি ফাইল বাছাই করে, যার পরে সার্ভার অ্যাপটি ফাইলের বিষয়বস্তু URI ক্লায়েন্ট অ্যাপে ফেরত দেয়।
এই পাঠটি আপনাকে দেখায় কিভাবে একটি ক্লায়েন্ট অ্যাপ সার্ভার অ্যাপ থেকে একটি ফাইলের অনুরোধ করে, সার্ভার অ্যাপ থেকে ফাইলের বিষয়বস্তু URI গ্রহণ করে এবং সামগ্রী URI ব্যবহার করে ফাইলটি খোলে।
ফাইলের জন্য একটি অনুরোধ পাঠান
সার্ভার অ্যাপ থেকে একটি ফাইলের জন্য অনুরোধ করতে, ক্লায়েন্ট অ্যাপটি ACTION_PICK
এর মতো অ্যাকশন এবং একটি MIME প্রকার যা ক্লায়েন্ট অ্যাপ পরিচালনা করতে পারে এমন একটি Intent
সহ startActivityForResult
কল করে।
উদাহরণ স্বরূপ, নিচের কোড স্নিপেট দেখায় কিভাবে একটি সার্ভার অ্যাপে একটি Intent
পাঠাতে হয় যাতে একটি ফাইল শেয়ারিং এ বর্ণিত Activity
শুরু করা যায়:
কোটলিন
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) ... } ... }
জাভা
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); ... } ... }
অনুরোধ করা ফাইল অ্যাক্সেস করুন
সার্ভার অ্যাপটি ফাইলের বিষয়বস্তু URI ক্লায়েন্ট অ্যাপে একটি Intent
ফেরত পাঠায়। এই Intent
ক্লায়েন্ট অ্যাপে তার onActivityResult()
এর ওভাররাইডে পাস করা হয়। একবার ক্লায়েন্ট অ্যাপে ফাইলের বিষয়বস্তু ইউআরআই হয়ে গেলে, এটি FileDescriptor
পেয়ে ফাইলটি অ্যাক্সেস করতে পারে।
এই প্রক্রিয়ায় ফাইলের নিরাপত্তা কেবল ততক্ষণ পর্যন্ত সংরক্ষিত থাকে যতক্ষণ না আপনি ক্লায়েন্ট অ্যাপটি প্রাপ্ত কন্টেন্ট ইউআরআইকে সঠিকভাবে পার্স করেন। বিষয়বস্তু পার্স করার সময়, আপনাকে অবশ্যই নিশ্চিত করতে হবে যে এই URI উদ্দেশ্যযুক্ত ডিরেক্টরির বাইরে কিছু নির্দেশ করে না, নিশ্চিত করে যে কোনও পাথ ট্রাভার্সাল করার চেষ্টা করা হচ্ছে না। শুধুমাত্র ক্লায়েন্ট অ্যাপের ফাইলে অ্যাক্সেস পাওয়া উচিত, এবং শুধুমাত্র সার্ভার অ্যাপ দ্বারা প্রদত্ত অনুমতিগুলির জন্য। অনুমতিগুলি অস্থায়ী, তাই একবার ক্লায়েন্ট অ্যাপের টাস্ক স্ট্যাক শেষ হয়ে গেলে, ফাইলটি সার্ভার অ্যাপের বাইরে আর অ্যাক্সেসযোগ্য নয়।
পরবর্তী স্নিপেট দেখায় কিভাবে ক্লায়েন্ট অ্যাপ সার্ভার অ্যাপ থেকে পাঠানো Intent
পরিচালনা করে এবং ক্লায়েন্ট অ্যাপ কীভাবে ইউআরআই ব্যবহার করে FileDescriptor
পায়:
কোটলিন
/* * 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 ... } }
জাভা
/* * 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
অবজেক্ট পায়, যা এটি ফাইলটি পড়ার জন্য ব্যবহার করতে পারে।
অতিরিক্ত সম্পর্কিত তথ্যের জন্য, পড়ুন: