Android 10 (api 29) 中没有这样的文件或目录
Posted
技术标签:
【中文标题】Android 10 (api 29) 中没有这样的文件或目录【英文标题】:No such file or directory in Android 10 (api 29) 【发布时间】:2020-08-21 02:02:12 【问题描述】:我正在开发一个照片编辑器应用程序,在该应用程序中编辑我的图片后,我将其保存到我的本地存储中。它在 android 9 之前工作正常,但在 android 10 上没有。它在 Android 10 中显示“没有找到这样的文件或目录”的异常。经过一些研究,我发现 getExternalFilesDir() 在 android Q+ 中已被弃用。但我在 android 10 中找不到任何合适的方法。所以如果有人可以提供教程,那将非常有帮助。
我已经添加并授予了 uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 以防万一,但它没有解决任何问题。
这是我的尝试(使用 ParcelFileDescriptor):
private void fileAccessForAndroidQ(Uri fileUri)
try
ParcelFileDescriptor parcelFileDescriptor = this.getContentResolver().openFileDescriptor(fileUri, "r", null);
InputStream inputStream = new FileInputStream(parcelFileDescriptor.getFileDescriptor());
Cursor returnCursor =
getContentResolver().query(fileUri, null, null, null, null);
int nameIndex = returnCursor.getColumnIndex(OpenableColumns.DISPLAY_NAME);
returnCursor.moveToFirst();
fileName = returnCursor.getString(nameIndex);
file = new File(this.getFilesDir(), fileName);
OutputStream outputStream = new FileOutputStream(file);
IOUtils.copyStream(inputStream, outputStream);
catch (Exception e)
Toast.makeText(this, ""+e.getMessage(), Toast.LENGTH_SHORT).show();
我们将不胜感激。
【问题讨论】:
Android 10 需要使用 MediaStore API。Android 10 之后,您无法直接访问 Storage。检查此以获取更多信息:developer.android.com/training/data-storage 【参考方案1】:我发现这对我有用。我正在尝试列出 ListView 上的所有文件
if (ContextCompat.checkSelfPermission(MainActivity.this, Manifest.permission.READ_EXTERNAL_STORAGE) != PackageManager.PERMISSION_GRANTED)
ActivityCompat.requestPermissions(MainActivity.this, new String[]Manifest.permission.READ_EXTERNAL_STORAGE, 0);
else
File s = Environment.getExternalStorageDirectory();
Log.d("Path ",Arrays.toString(s.listFiles()));
File[] s1 = new File[s.listFiles().length];
for(int i=0;i<s.listFiles().length;i++)
s1[i]= new File(s.listFiles()[i].toString().replace("/storage/emulated/0/", ""));
ArrayAdapter<File> adapter = new ArrayAdapter<File>(this,R.layout.support_simple_spinner_dropdown_item,s1);
l1.setAdapter(adapter);
【讨论】:
【参考方案2】:这是我能找到的最好的: https://developer.android.com/training/data-storage/app-specific#external
基本上,您现在为文件使用特定于应用程序的目录。例如:
@Nullable
File getAppSpecificAlbumStorageDir(Context context, String albumName)
// Get the pictures directory that's inside the app-specific directory on
// external storage.
File file = new File(context.getExternalFilesDir(
Environment.DIRECTORY_PICTURES), albumName);
if (file == null || !file.mkdirs())
Log.e(LOG_TAG, "Directory not created");
return file;
【讨论】:
【参考方案3】:如果您面向 Android 10(API 级别 29)或更高版本,请在应用的清单文件中将 requestLegacyExternalStorage
的值设置为 true
:
Documentation
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.appname"
android:installLocation="auto">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:requestLegacyExternalStorage="true"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme.NoActionBar">
<activity android:name=".activities.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
【讨论】:
虽然目前这是一个很好的解决方案,但未来的 Android 版本可能也不支持 getExternalFilesDir()。目前也在尝试解决这个问题,一个好的起点在这里:***.com/questions/56468539/…。和***.com/questions/57116335/… 这是我的问题的解决方案!以上是关于Android 10 (api 29) 中没有这样的文件或目录的主要内容,如果未能解决你的问题,请参考以下文章
Android 10(api 29)camera2 api回归与广角相机
Android API 8 , 10 ContactsContract.Data.HAS_PHONE_NUMBER 没有这样的列
如何在android 10或更高版本中获得“总是”位置的许可? (高于 API 29)?
Android 10 / API 29:如何将手机连接到配置的网络?