首页 > 解决方案 > 在继续之前检查是否授予了写入存储的权限

问题描述

我的应用程序有问题。要使用某个选项,我需要授予外部存储访问权限。我在那里找到了完美的代码:

public  boolean isStoragePermissionGranted() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) {
    if (checkSelfPermission(android.Manifest.permission.WRITE_EXTERNAL_STORAGE)
            == PackageManager.PERMISSION_GRANTED) {
        Log.v(TAG,"Permission is granted");
        return true;
    } else {

        Log.v(TAG,"Permission is revoked");
        ActivityCompat.requestPermissions(this, new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE}, 1);
        return false;
    }
}
else { //permission is automatically granted on sdk<23 upon installation
    Log.v(TAG,"Permission is granted");
    return true;
}

}

来源:棉花糖中的存储权限错误

问题是,代码运行良好,但我不明白如果未授予访问权限(或等待用户在继续我的代码之前单击“允许”),如何阻止我自己的代码继续运行。

我的代码:

isStoragePermissionGranted();
        File outputFile = new File("");
            InputStream is = getResources().openRawResource(((Sound) adapter.getItem(index)).getMpsound());
            try {
                byte[] buffer = new byte[is.available()];
                is.read(buffer);
                File outputDir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);
                outputFile = new File(outputDir, getResources().getResourceEntryName(((Sound) adapter.getItem(index)).getMpsound()) + ".mp3");
                OutputStream os = new FileOutputStream(outputFile);
                os.write(buffer);
            } catch (IOException e) {
                e.printStackTrace();
            }
            Intent share = new Intent(Intent.ACTION_SEND);
            share.setType("audio/*");
            share.putExtra(Intent.EXTRA_STREAM, FileProvider.getUriForFile(this, BuildConfig.APPLICATION_ID + ".provider", outputFile));
            share.putExtra(Intent.EXTRA_TEXT, "\"" + ((Sound) adapter.getItem(index)).getTitre_show() + "\" shared by my app !");
            startActivity(Intent.createChooser(share, "Share Sound File"));
            return true;

目前,一切都已执行,应用程序会尝试共享文件,即使访问权限未被授予。所以它不起作用。如果我回去,要求允许访问的弹出窗口就在那里,等待答案。

我怎样才能做到这一点?

标签: javaandroid

解决方案


更改此行

isStoragePermissionGranted();

进入这个应该工作。

if(isStoragePermissionGranted())

推荐阅读