طلب ملف مشترك

عندما يريد أحد التطبيقات الوصول إلى ملف شاركه تطبيق آخر، فإن التطبيق الذي يقدّم الطلب (العميل) عادةً ما يرسل طلبًا إلى التطبيق لمشاركة الملفات (الخادم). في معظم الحالات، قد يحتاج الطلب يؤدي إلى بدء تشغيل Activity في تطبيق الخادم الذي يعرض الملفات التي يمكنه مشاركتها. يختار المستخدم ملفًا، وبعد ذلك يعرض تطبيق الخادم معرِّف الموارد المنتظم (URI) لمحتوى الملف إلى التطبيق العميل.

يوضح هذا الدرس كيف يطلب تطبيق العميل ملفًا من تطبيق خادم ويتلقى ملف للمحتوى URI من تطبيق الخادم، ويفتح الملف باستخدام معرّف الموارد المنتظم للمحتوى.

إرسال طلب للحصول على الملف

لطلب ملف من تطبيق الخادم، يستدعي تطبيق العميل startActivityForResult باستخدام Intent التي تحتوي على الإجراء مثل ACTION_PICK ونوع MIME الذي يستخدمه تطبيق العميل يمكنه التعامل معها.

على سبيل المثال، يوضح مقتطف الرمز التالي كيفية إرسال Intent إلى تطبيق خادم لبدء Activity الموضّح في مقالة مشاركة ملف:

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

الوصول إلى الملف المطلوب

يرسل تطبيق الخادم عنوان URI لمحتوى الملف مرة أخرى إلى تطبيق العميل في Intent يتم تمرير Intent هذا إلى العميل تطبيق بعد تجاوز onActivityResult(). مرة واحدة تطبيق العميل يحتوي على معرّف الموارد المنتظم (URI) لمحتوى الملف، فيمكنه الوصول إلى الملف عن طريق الحصول FileDescriptor

يتم الاحتفاظ بأمان الملفات في هذه العملية فقط طالما أنك تحلل معرّف الموارد المنتظم (URI) للمحتوى بشكل صحيح التي يتلقاها تطبيق العميل. عند تحليل المحتوى، يجب التأكد من أنّ معرّف الموارد المنتظم (URI) هذا لا يشير إلى إلى أي شيء خارج الدليل المقصود، مع ضمان عدم تجري محاولة لاجتياز المسار. يجب أن يحصل تطبيق العميل فقط على إذن الوصول إلى الملف، ولا يسمح إلا للأذونات التي يمنحها تطبيق الخادم. الأذونات مؤقتة، لذا بمجرد الانتهاء من حزمة المهام الخاصة بتطبيق العميل، لم يعد يمكن الوصول إلى الملف خارج تطبيق الخادم.

ويوضح المقتطف التالي كيفية تعامل تطبيق العميل مع تم إرسال Intent من تطبيق الخادم، وكيفية حصول تطبيق العميل على FileDescriptor باستخدام معرّف الموارد المنتظم (URI) للمحتوى:

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، والذي يمكنه بعد ذلك استخدامه لقراءة الملف.

لمزيد من المعلومات ذات الصلة، راجع: