在 Android 中,FileChooser 的存儲路徑可以通過 Intent 來設置。以下是一個簡單的示例,展示了如何使用 FileChooser 選擇一個文件并指定存儲路徑:
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
private static final int FILE_PICK_REQUEST_CODE = 1;
private void openFileChooser() {
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("*/*");
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.putExtra(Intent.EXTRA_LOCAL_ONLY, true);
try {
startActivityForResult(
Intent.createChooser(intent, "選擇文件"),
FILE_PICK_REQUEST_CODE);
} catch (android.content.ActivityNotFoundException ex) {
Toast.makeText(this, "請安裝文件管理器", Toast.LENGTH_SHORT).show();
}
}
@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == FILE_PICK_REQUEST_CODE && resultCode == RESULT_OK && data != null) {
Uri uri = data.getData();
if (uri != null) {
// 獲取到文件的 Uri,可以根據需要進行處理
String filePath = getPathFromUri(this, uri);
// 使用 filePath 進行相應操作
}
}
}
getPathFromUri
來獲取文件的路徑:public String getPathFromUri(Context context, Uri uri) {
String[] projection = { MediaStore.Images.Media.DATA };
Cursor cursor = null;
try {
cursor = context.getContentResolver().query(uri, projection, null, null, null);
if (cursor != null && cursor.moveToFirst()) {
int columnIndex = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
return cursor.getString(columnIndex);
}
} finally {
if (cursor != null) {
cursor.close();
}
}
return null;
}
現在,當你調用 openFileChooser()
方法時,將會彈出一個文件選擇器,用戶可以從中選擇一個文件。所選文件的路徑將通過 onActivityResult
方法返回。