FileNotFoundException:/ storage / emulated / 0 / Download / - Android Oreo

问题描述 投票:0回答:1

我有一个应用程序。有一个imageview。图片从Url加载,还有一个用于共享图片的按钮。当我按分享按钮时,我得到以下错误。

java.io.FileNotFoundException:/storage/emulated/0/Download/share_image_1536343274460.png(权限被拒绝)

我的清单xml:

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="50"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" android:maxSdkVersion="50"/>

<provider
    android:name="android.support.v4.content.FileProvider"
    android:authorities="com.xxxx.fileprovider"
    android:exported="false"
    android:grantUriPermissions="true">
    <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/provider_paths"/>
</provider>

provider_paths xml

<?xml version="1.0" encoding="utf-8"?>
<paths xmlns:android="http://schemas.android.com/apk/res/android">
    <external-path name="external_files" path="."/>
</paths>

这是我的java代码

btnShare.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {
        //Toast.makeText(getApplicationContext(), "Test", Toast.LENGTH_SHORT).show();

        if (isReadStorageAllowed() == true) {
           onShareItem();
        }
        else
        {
            requestStoragePermission();
        }
    }
});

public void onShareItem() {
    // Get access to bitmap image from view
    imageView = (ImageView) findViewById(R.id.thumbnail);

    // Get access to the URI for the bitmap
    Uri bmpUri = getLocalBitmapUri(imageView);
    if (bmpUri != null) {
        //outfile is the path of the image stored in the gallery
        // Construct a ShareIntent with link to image
        Intent shareIntent = new Intent();
        shareIntent.setAction(Intent.ACTION_SEND);
        shareIntent.putExtra(Intent.EXTRA_STREAM, bmpUri);
        shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
        shareIntent.setType("image/*");
        shareIntent.putExtra(Intent.EXTRA_TEXT,marketLink);
        // Launch sharing dialog for image
        startActivity(Intent.createChooser(shareIntent, "Share Image"));
    } else {
         // ...sharing failed, handle error
    } 
}

public Uri getLocalBitmapUri(ImageView imageView) {
    Drawable drawable = imageView.getDrawable();
    Bitmap bmp = null;
    if (drawable instanceof BitmapDrawable){
        bmp = ((BitmapDrawable) imageView.getDrawable()).getBitmap();
    } else {
        return null;
    }
    // Store image to default external storage directory
    Uri bmpUri = null;
    try {
        File file =  new File(Environment.getExternalStoragePublicDirectory(
                Environment.DIRECTORY_DOWNLOADS), "share_image_" + System.currentTimeMillis() + ".png");
        file.getParentFile().mkdirs();
        FileOutputStream out = new FileOutputStream(file);
        bmp.compress(Bitmap.CompressFormat.PNG, 90, out);
        out.close();
        bmpUri = Uri.fromFile(file);
    } catch (IOException e) {
        e.printStackTrace();
    }
    return bmpUri;
}
android filenotfoundexception sharing
1个回答
0
投票

在针对API级别24及以上的目标时,您需要使用FileProvider.getUriForFile(context, "provider authority from manifest", file);而不是Uri.fromFile(file)

您的主要更改将是方法getLocalBitmapUri() @此行:

bmpUri = Uri.fromFile(file);

所以改变就好

如果(超过API 24)则使用

FileProvider.getUriForFile(context, "provider authority from manifest", file);

别的老方法。

© www.soinside.com 2019 - 2024. All rights reserved.