直播平臺製作,支援其他應用開啟,接收其他應用檔案並儲存

zhibo系統開發發表於2023-05-19

直播平臺製作,支援其他應用開啟,接收其他應用檔案並儲存

AndroidMainfest中

         <activity
            android:name=".ui.activity.OtherFileActivity"
            android:screenOrientation="portrait">
            <intent-filter>
                <action android:name="android.intent.action.VIEW"/>
                <category android:name="android.intent.category.DEFAULT"/>
                <category android:name="android.intent.category.BROWSABLE"/>
                <data android:scheme="file"/>
                <data android:scheme="content"/>
                <data android:mimeType="*/*"/>  
                <data android:pathPattern="*/docx"/> 
            </intent-filter>
        </activity>


說明

OtherFileActivity 其他應用呼叫本app 開啟的activity,也是接收資料的activity
android:mimeType=“/”
android:pathPattern=“*/docx”
儲存Activity中接收的檔案
    override fun onNewIntent(intent: Intent?) {
        super.onNewIntent(intent)
        save(intent)
    }
    private fun save(intent: Intent?){
        val uri: Uri? = intent?.data
        val imageUri: Uri? = intent?.getParcelableExtra(Intent.EXTRA_STREAM)
        if (uri != null) {
            val scheme:String? = uri.scheme
            val host:String? = uri.host
            val port:Int = uri.port
            val path:String? = uri.path
            val query:String? = uri.query
            val action:String? = intent.action
            val type:String? = intent.type
            var content: String =""
            if (Intent.ACTION_SEND.equals(action) && type != null) {  //單檔案
                if ("text/plain".equals(type)) {
                //TODO 單文字檔案
                } else if (type.startsWith("image/")) {
                //TODO 單圖片
                }
            } else if (Intent.ACTION_SEND_MULTIPLE.equals(action) && type != null) {  //多檔案
                if (type.startsWith("image/")) {
                //TODO 圖片列表
                }
            }
            var inputStream: InputStream? = null
            try {
                inputStream = contentResolver.openInputStream(uri)
                 content = Util.readStreamToString(inputStream)
                //content 就是讀取到的內容了,請直接食用
            } catch (e: Exception) {
                e.printStackTrace()
            } finally {
                if (inputStream != null) {
                    try {
                        inputStream.close()
                    } catch (ignored: IOException) {
                    }
                }
            }
            content.let {
                val createFiles = File(this.filesDir, path)
                createFiles.exists()
                try {
                    createFiles.createNewFile()
                } catch (e: IOException) {
                    Log.d("TAG", "files err:" + e.message)
                }
            }
        }
    }



 以上就是 直播平臺製作,支援其他應用開啟,接收其他應用檔案並儲存,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2953317/,如需轉載,請註明出處,否則將追究法律責任。

相關文章