- 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
的步驟和示例周循。- 本文中示例為兩個應(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
-
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();