我有个问题。我目前正在将 pdf 文件保存在内部存储 /data/user/0/com.thatapp.myApp/files/JP_31072016065930.pdf
通过应用程序阅读它不是问题,所以我很肯定它存在。我现在正在尝试通过电子邮件发送文件。从这里的其他问题和答案中,我了解到您需要使用文件提供程序。
所以我在清单中添加了以下内容
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.thatapp.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/filepath" />
</provider>
@xml/文件路径包含
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<files-path name="my_pdf" path=""/>
我的发送电子邮件功能如下
String[] TO = {""};
String[] CC = {""};
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.setData(Uri.parse("mailto:"));
emailIntent.setType("text/plain");
emailIntent.putExtra(Intent.EXTRA_EMAIL, TO);
emailIntent.putExtra(Intent.EXTRA_CC, CC);
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "OTP:" + fileNmStr);
emailIntent.putExtra(Intent.EXTRA_TEXT, "Email message goes here");
File file = new File(fileNmStr);
Log.i("PDF FILE", fileNmStr);
Uri contentUri = getUriForFile(this, "com.thatapp.fileprovider", file);
emailIntent.putExtra(Intent.EXTRA_STREAM, contentUri);
try {
startActivity(Intent.createChooser(emailIntent, "Send mail..."));
finish();
Toast.makeText(this, "Email Sent.", Toast.LENGTH_SHORT).show();
}
catch (android.content.ActivityNotFoundException ex) {
Toast.makeText(this, "There is no email client installed.", Toast.LENGTH_SHORT).show();
}
文件记录为 /data/user/0/com.thatapp.contract/files/OTP_JP_31072016065930.pdf
当我运行代码时,我遇到了异常
java.lang.IllegalArgumentException: Failed to find configured root that contains /data/data/com.thatapp.myApp/files/OTP_JP_31072016065930.pdf
因此,如果根据我的理解 /data/user/0/ == /data/data/ ,那么导致问题的原因是什么?我的文件路径错了吗?我也尝试将“files/”作为文件路径中的路径,但遇到了同样的问题。请帮助.... 已经盯着问题 24 小时