gpt4 book ai didi

java - 使用文件提供程序在 Android Nougat 上打开下载的文件

转载 作者:搜寻专家 更新时间:2023-11-01 09:39:49 25 4
gpt4 key购买 nike

嗨,stackoverflow 我真的很难在 Android Nougat 上打开下载的 apk。我知道需要使用文件提供程序,我只是不知道如何输入正确的路径。该应用程序崩溃或找不到文件。它总是打开/storage/emulated/0/Android/data/cf.vojtechh.apkmirror/Downloads - 当然不存在。我需要应用程序访问内部存储中的下载目录(类似于 Environment.getExternalStorageDirectory().getPath() + "/"+ Environment.DIRECTORY_DOWNLOADS + "/"+ fileName)

有什么想法吗?我已经在互联网上找了一个多小时,但我就是找不到它(我到了那个地步,我非常生气,我想把崩溃留在那里而忽略它)

MainActivity.java

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
File apkfile = new File(getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS), fileName);
Uri apkUri = FileProvider.getUriForFile(MainActivity.this, "cf.vojtechh.apkmirror.provider", apkfile);
String s = apkUri.toString();
Log.d("HERE!!",s);
Intent intent = new Intent(Intent.ACTION_INSTALL_PACKAGE);
intent.setData(apkUri);
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(intent);

} else {
File apkfile = new File(Environment.getExternalStorageDirectory().getPath() + "/" + Environment.DIRECTORY_DOWNLOADS + "/" + fileName);
Uri apkUri = Uri.fromFile(apkfile);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(apkUri, "application/vnd.android.package-archive");
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}

provider_paths.xml

    <?xml version="1.0" encoding="utf-8"?>
<paths>
<external-path name="Download" path="Download/"/>
</paths>

AndroidManifest.xml

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

最佳答案

尝试使用 Environment#getExternalStoragePublicDirectory()方法代替。 Context#getExternalFilesDir()旨在用于您的应用程序的私有(private)文件,因此包含您的应用程序包名称的路径(从技术上讲,此目录公共(public)的,但仍然不是您要查找的目录)。

File downloads = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS);

然后您可以创建下载文件的 File 表示:

File apk = new File(downloads, filename);

关于java - 使用文件提供程序在 Android Nougat 上打开下载的文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40494468/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com