gpt4 book ai didi

android - 缺少 android.support.FILE_PROVIDER_PATHS 元数据

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:39:16 27 4
gpt4 key购买 nike

我正在尝试打开我下载并保存在外部存储器中的 pdf 文件。但是当我打开我的应用程序时,它会崩溃并显示以下错误;

08-31 00:58:31.304 1807-1807/? E/AndroidRuntime: FATAL EXCEPTION: main
Process: medimanage.corporate.mobile, PID: 1807
java.lang.RuntimeException: Unable to get provider android.support.v4.content.FileProvider: java.lang.IllegalArgumentException: Missing android.support.FILE_PROVIDER_PATHS meta-data
at android.app.ActivityThread.installProvider(ActivityThread.java:5856)
at android.app.ActivityThread.installContentProviders(ActivityThread.java:5445)
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:5384)
at android.app.ActivityThread.-wrap2(ActivityThread.java)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1545)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:154)
at android.app.ActivityThread.main(ActivityThread.java:6119)
at java.lang.reflect.Method.invoke(Native Method)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)
Caused by: java.lang.IllegalArgumentException: Missing android.support.FILE_PROVIDER_PATHS meta-data
at android.support.v4.content.FileProvider.parsePathStrategy(FileProvider.java:586)
at android.support.v4.content.FileProvider.getPathStrategy(FileProvider.java:557)
at android.support.v4.content.FileProvider.attachInfo(FileProvider.java:375)
at android.app.ActivityThread.installProvider(ActivityThread.java:5853)
at android.app.ActivityThread.installContentProviders(ActivityThread.java:5445) 
at android.app.ActivityThread.handleBindApplication(ActivityThread.java:5384) 
at android.app.ActivityThread.-wrap2(ActivityThread.java) 
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1545) 
at android.os.Handler.dispatchMessage(Handler.java:102) 
at android.os.Looper.loop(Looper.java:154) 
at android.app.ActivityThread.main(ActivityThread.java:6119) 
at java.lang.reflect.Method.invoke(Native Method) 
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886) 
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776) 

以下是我下载该 pdf 文件并尝试打开它的异步任务。

package myPackageName.common.postData;    
public class DownloadFileFromURL extends AsyncTask<String, String, String> {

private ProgressDialog Dialog;
private Context mContext;
private String folder_main; //= "TermCondition";
private String fileName;//= "termCondition.pdf";
String urlString;

public DownloadFileFromURL(Context mContext, String folderName) {
this.mContext = mContext;
this.folder_main = folderName;
Dialog = new ProgressDialog(this.mContext);
}

@Override
protected String doInBackground(String... f_url) {
try {
urlString = f_url[0];
URL url = new URL(f_url[0]);
File folder = new File(Environment.getExternalStorageDirectory(), this.folder_main);
if (folder.exists()) {
folder.mkdirs();
}
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.connect();
InputStream inputStream = urlConnection.getInputStream();
FileOutputStream fileOutputStream = new FileOutputStream(Environment.getExternalStorageDirectory() + "/" + "default.pdf");
int totalSize = urlConnection.getContentLength();
byte[] buffer = new byte[AccessibilityNodeInfoCompat.ACTION_DISMISS];
while (true) {
int bufferLength = inputStream.read(buffer);
if (bufferLength <= 0) {
break;
}
fileOutputStream.write(buffer, 0, bufferLength);
}
fileOutputStream.close();
} catch (FileNotFoundException e) {
FileLog.e(mContext.getClass().getName(), e);
} catch (MalformedURLException e2) {
FileLog.e(mContext.getClass().getName(), e2);
} catch (IOException e3) {
FileLog.e(mContext.getClass().getName(), e3);
}
return null;
}

public void showPdf() {
try {

File file = new File(Environment.getExternalStorageDirectory() + "/" + "default.pdf");

try {
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
Uri contentUri = FileProvider.getUriForFile(mContext, "medimanage.corporate.mobile.fileprovider", file);
intent.setDataAndType(contentUri, "application/pdf");
} else {
intent.setDataAndType(Uri.fromFile(file), "application/pdf");
}
mContext.startActivity(intent);
} catch (ActivityNotFoundException anfe) {
Toast.makeText(mContext, "No activity found to open this attachment.", Toast.LENGTH_LONG).show();
}

} catch (Exception e) {
FileLog.e(mContext.getClass().getName(), e);
}
}

@Override
protected void onPreExecute() {
Dialog.setMessage("Downloading...");
Dialog.setCancelable(false);
Dialog.setCanceledOnTouchOutside(false);
Dialog.show();
}

@Override
protected void onPostExecute(String s) {
this.Dialog.dismiss();
showPdf();
super.onPostExecute(s);
}

}

下面是AndroidManifest.xml

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

并且 provider_paths.xml 具有以下代码;

<?xml version="1.0" encoding="utf-8"?>
<paths>
<external-path path="Android/data/" name="files_root" />
<external-path path="." name="external_storage_root" />
</paths>

我试图在 API 19 和 API 25 中运行上述代码,但在这两种设备中它都崩溃了。我无法找出哪里出错了。

我提到了this question还有this link也是,但无法找到解决我的问题的方法。

最佳答案

在您的 AndroidManifest 文件中,您的元数据中有一个轻微的拼写错误:

<meta-data
android:name="android.support.FILE_PROVIDER_PATHS" <-- HERE!!!
android:resource="@xml/provider_paths" />

您需要使用 FILE_PROVIDER_PATHS 而不是 FILE_PROVIDE_PATHS。

关于android - 缺少 android.support.FILE_PROVIDER_PATHS 元数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45973746/

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