記一次Android 11上的FileProvider使用

  1. Android 10開始引入了分區(qū)存儲的概念但汞,Android 11開始強(qiáng)制執(zhí)行严衬,也就是以前的時候我們可以任意的訪問SD卡下任意目錄骡和,Android 11上則不能隨意訪問悟狱,除了/sdcard/Android/data/應(yīng)用包名目錄下的內(nèi)容外,其它目錄都已禁止訪問磷籍,音樂适荣、視頻现柠、下載目錄下的文件需要向用戶申請權(quán)限院领,允許后才可訪問,關(guān)于分區(qū)存儲够吩,不在此文章中贅述比然,請轉(zhuǎn)至官網(wǎng):點(diǎn)擊跳轉(zhuǎn),此文章主要介紹使用FileProvider的步驟和示例周循。
  2. 本文中示例為兩個應(yīng)用强法,testa負(fù)責(zé)共享/sdcard/Android/data/com.ttxz.testa/files/config/lala/test.properties文件,testb負(fù)責(zé)讀取此文件湾笛,并向此文件中追加寫入內(nèi)容饮怯。

1. testa應(yīng)用設(shè)置共享

  • 首頁在上目錄下創(chuàng)建出相應(yīng)的文件,并寫入部分?jǐn)?shù)據(jù)嚎研;
File path = getExternalFilesDir("config");
File dirFile = new File(path, "lala");
if (!dirFile.exists()) {
    boolean mkdirs = dirFile.mkdirs();
    Log.e(TAG, "文件目錄創(chuàng)建結(jié)果:" + mkdirs);
}
File file = new File(dirFile, "test.properties");

if (!file.exists()) {
    boolean fileCreate = false;
    try {
        fileCreate = file.createNewFile();
        Log.e(TAG, "文件創(chuàng)建結(jié)果:" + fileCreate);
    } catch (IOException e) {
        e.printStackTrace();
    }
}
ATFProperties atfProperties = new ATFProperties();
try {
    atfProperties.loadPropertiesFromSDCard(file.getAbsolutePath());
    atfProperties.putValue("key1", "value1");
    atfProperties.putValue("key2", "value2");
    atfProperties.putValue("key3", "value3");
    boolean store = atfProperties.store();
    Log.e(TAG, "寫入文件內(nèi)容:" + store);
} catch (FileNotFoundException e) {
    e.printStackTrace();
}
  • res目錄下創(chuàng)建xml目錄蓖墅,xml目錄下創(chuàng)建file_paths.xml
    創(chuàng)建xml
  • file_paths.xml說明
<?xml version="1.0" encoding="utf-8"?>
<paths>
<!--可以配置成根目錄整個都可以訪問-->
<!--    <external-files-path-->
<!--        name="data_config"-->
<!--        path="/" />-->
<!--或是指定要訪問的目錄-->
    <external-files-path
        name="data_config"
        path="config/" />
</paths>

paths下標(biāo)簽和路徑介紹:

序號 標(biāo)簽名 對應(yīng)API 對應(yīng)路徑 備注
1 files-path Context.getFilesDir() /data/user/0/com.ttxz.testa/files
2 cache-path Context.getCacheDir() /data/user/0/com.ttxz.testa/cache
3 external-path Environment.getExternalStorageDirectory() /storage/emulated/0
4 external-files-path Context.getExternalFilesDir(String type) /storage/emulated/0/Android/data/com.ttxz.testa/files
5 external-cache-path Context.getExternalCacheDir() /storage/emulated/0/Android/data/com.ttxz.testa/cache
6 external-media-path Context.getExternalMediaDirs() [/storage/emulated/0/Android/media/com.ttxz.testa]

注:上述詳細(xì)信息參考:官網(wǎng)鏈接:FileProvider

  • 清單文件provider標(biāo)簽設(shè)置
<provider
    android:name="androidx.core.content.FileProvider"<!--可以使用官方提供的,也可以自定義-->
    android:authorities="com.ttxz.testa.fileprovider"<!--一般使用{$包名}.自定義字段-->
    android:exported="false"<!--必須為false临扮,否則報錯-->
    android:grantUriPermissions="true">
    <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"<!--固定值-->
        android:resource="@xml/file_paths"/><!--關(guān)聯(lián)上一步聲明的path資源文件-->
</provider>
  • 設(shè)置接收testb應(yīng)用中的Activity請求Uri時的Activity
public class FileProvider extends Activity {
    private static final String TAG = "FileProvider";

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Intent intent = getIntent();
        Log.e(TAG, "action:" + intent.getAction());
        //過濾action
        if ("com.ttxz.testa.provider.data".equals(intent.getAction())) {
            //創(chuàng)建要共享的文件
            File imagePath = getExternalFilesDir("config");
            File newFile = new File(imagePath, "lala/test.properties");
            //獲取Uri根據(jù)要共享的文件论矾,并傳入清單文件中定義的authority
            Uri contentUri = androidx.core.content.FileProvider
                    .getUriForFile(this, "com.ttxz.testa.fileprovider", newFile);
            //創(chuàng)建返回Intent對象
            Intent resultIntent = new Intent(Intent.ACTION_SENDTO);
            resultIntent.setData(contentUri);
            //        requestIntent.putExtra(MediaStore.EXTRA_OUTPUT, contentUri);
            //設(shè)置讀寫權(quán)限
            resultIntent.addFlags(
                    Intent.FLAG_GRANT_READ_URI_PERMISSION | Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
            setResult(RESULT_OK, resultIntent);
            finish();
        }
    }
}

-清單文件中設(shè)置FileProvider外部可訪問和action

<activity android:name=".provider.FileProvider" android:exported="true">
    <intent-filter>
        <action android:name="com.ttxz.testa.provider.data" />
    </intent-filter>
</activity>

2. testb應(yīng)用操作testa應(yīng)用中的文件

  • 注冊registerForActivityResult開啟Activity的返回監(jiān)聽
//注意:此方法需要提前調(diào)用,和launch方法同時調(diào)用時可能會提示未注冊該監(jiān)聽
ActivityResultLauncher<Intent> rw = registerForActivityResult(
                new ActivityResultContracts.StartActivityForResult(),
                new ActivityResultCallback<ActivityResult>() {
                    @Override
                    public void onActivityResult(ActivityResult result){
                      ...
                    }
                });
  • 開啟testa應(yīng)用中的FileProvider杆勇,獲取要訪問的Uri
Intent intent = new Intent("com.ttxz.testa.provider.data");
intent.setClassName("com.ttxz.testa", "com.ttxz.testa.provider.FileProvider");
rw.launch(intent);
  • 收到testa通過setResult方法返回的Uri后贪壳,讀取文件內(nèi)容
Intent resultData = result.getData();
Uri uri = resultData.getData();
Log.e(TAG, "uri===" + uri);
BufferedReader br = null;
BufferedWriter bw = null;
try {
    ParcelFileDescriptor fileDescriptor = getContentResolver()
            .openFileDescriptor(uri, "rw");
    FileInputStream fileInputStream = new FileInputStream(
            fileDescriptor.getFileDescriptor());
    br = new BufferedReader(
            new InputStreamReader(fileInputStream));
    String lineData;
    while ((lineData = br.readLine()) != null) {
        Log.e(TAG, "數(shù)據(jù):" + lineData);
    }
} catch (FileNotFoundException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
}finally {
    try {
        if (br != null) {
            br.close();
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
}
  • 寫入時增加以下即可:
FileOutputStream fos = new FileOutputStream(fileDescriptor.getFileDescriptor());
bw = new BufferedWriter(new OutputStreamWriter(fos));
bw.newLine();
bw.write("---------TestB應(yīng)用寫入TestA應(yīng)用data數(shù)據(jù)成功----------");
bw.newLine();
bw.write("應(yīng)用名稱=TestB");
bw.flush();
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個濱河市蚜退,隨后出現(xiàn)的幾起案子闰靴,更是在濱河造成了極大的恐慌彪笼,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,482評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件传黄,死亡現(xiàn)場離奇詭異杰扫,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)膘掰,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,377評論 2 382
  • 文/潘曉璐 我一進(jìn)店門章姓,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人识埋,你說我怎么就攤上這事凡伊。” “怎么了窒舟?”我有些...
    開封第一講書人閱讀 152,762評論 0 342
  • 文/不壞的土叔 我叫張陵系忙,是天一觀的道長。 經(jīng)常有香客問我惠豺,道長银还,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,273評論 1 279
  • 正文 為了忘掉前任洁墙,我火速辦了婚禮蛹疯,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘热监。我一直安慰自己捺弦,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,289評論 5 373
  • 文/花漫 我一把揭開白布孝扛。 她就那樣靜靜地躺著列吼,像睡著了一般。 火紅的嫁衣襯著肌膚如雪苦始。 梳的紋絲不亂的頭發(fā)上寞钥,一...
    開封第一講書人閱讀 49,046評論 1 285
  • 那天,我揣著相機(jī)與錄音陌选,去河邊找鬼理郑。 笑死,一個胖子當(dāng)著我的面吹牛柠贤,可吹牛的內(nèi)容都是我干的香浩。 我是一名探鬼主播,決...
    沈念sama閱讀 38,351評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼臼勉,長吁一口氣:“原來是場噩夢啊……” “哼邻吭!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起宴霸,我...
    開封第一講書人閱讀 36,988評論 0 259
  • 序言:老撾萬榮一對情侶失蹤囱晴,失蹤者是張志新(化名)和其女友劉穎膏蚓,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體畸写,經(jīng)...
    沈念sama閱讀 43,476評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡驮瞧,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,948評論 2 324
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了枯芬。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片论笔。...
    茶點(diǎn)故事閱讀 38,064評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖千所,靈堂內(nèi)的尸體忽然破棺而出狂魔,到底是詐尸還是另有隱情,我是刑警寧澤淫痰,帶...
    沈念sama閱讀 33,712評論 4 323
  • 正文 年R本政府宣布最楷,位于F島的核電站,受9級特大地震影響待错,放射性物質(zhì)發(fā)生泄漏籽孙。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,261評論 3 307
  • 文/蒙蒙 一火俄、第九天 我趴在偏房一處隱蔽的房頂上張望犯建。 院中可真熱鬧,春花似錦烛占、人聲如沸胎挎。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,264評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至德迹,卻和暖如春芽卿,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背胳搞。 一陣腳步聲響...
    開封第一講書人閱讀 31,486評論 1 262
  • 我被黑心中介騙來泰國打工卸例, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人肌毅。 一個月前我還...
    沈念sama閱讀 45,511評論 2 354
  • 正文 我出身青樓筷转,卻偏偏與公主長得像,于是被迫代替她去往敵國和親悬而。 傳聞我的和親對象是個殘疾皇子呜舒,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,802評論 2 345

推薦閱讀更多精彩內(nèi)容