嗨,我正在开发一个具有电子邮件功能的 android 应用程序。在这里,我需要从我的路径 data/data/mypackage/files 文件夹中发送一个 CSV 文件。我将 csv 文件存储在那里。它保存得很好。我的 csv 文件大小仅为 245 字节。但是,当我尝试通过 android 的邮件功能发送该文件时,显示“文件太大而无法附加..”消息正在显示。
这是我的代码:
String filelocation="file:///data/data/my package/files/excerDB.zip";
final Intent emailIntent = new
Intent(android.content.Intent.ACTION_SEND);
emailIntent .setType("plain/text");
emailIntent .putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{"purpletalk.raghu@gmail.com"});
emailIntent .putExtra(android.content.Intent.EXTRA_SUBJECT, "Attendence Report");
emailIntent .putExtra(android.content.Intent.EXTRA_STREAM, Uri.parse(filelocation));
startActivity( emailIntent);
但这对我不起作用。请告诉我如何将我的文件作为附件发送到我的申请中的邮件。