我正在尝试从手机的SD卡中读取json文件。(SAMSUNG SM-G532M)。
但是我不能。
我想将文件放在“下载”文件夹中,并使应用程序特别查找该文件夹中的特定文件名。
但是我得到了FileNotFoundException。
当我调试应用程序时,路径与我所选择的路径不同。 我得到“ / storage / emulated / 0”,但我想阅读SDCARD中的下载文件夹。
当我使用此句子时:
ruta_sd = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);
我调试该值,它响应于:
/storage/emulated/0/Download
当我尝试使用Device File Explorer导航时,出现“ Opendir失败:权限被拒绝”
我做错了什么?
我将此行添加为清单。
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE">
</uses-permission>
注释: 开发Android Studio 3.2 电话:三星:SM-G532M(未仿真)
提前谢谢! 最好的问候
答案 0 :(得分:1)
您需要请求运行时。
public static final int READ_EXTERNAL_STORAGE = 112;
protected void readSDcardDownloadedFiles() {
if (ContextCompat.checkSelfPermission(this, Manifest.permission.READ_EXTERNAL_STORAGE)
!= PackageManager.PERMISSION_GRANTED) {
ActivityCompat.requestPermissions(this,
new String[]{Manifest.permission.READ_EXTERNAL_STORAGE}, READ_EXTERNAL_STORAGE);
} else {
//Permission is granted
//Call the method to read file.
}
}
@Override
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
if (grantResults.length > 0
&& grantResults[0] == PackageManager.PERMISSION_GRANTED) {
//Read the files
} else {
// permission denied, boo! Disable the
// functionality that depends on this permission.
}
}