我正在维护一个使用OrmLiteSqliteOpenHelper在设备上创建Sqlite数据库的传统Android应用程序。在设备上,我发现这个文件位于:
/数据/数据/ [包名称] /databases/mydatabase.db
我的应用程序具有“电子邮件支持”功能,不幸的是我的任务是将此SQLite文件附加到电子邮件Intent以解决用户问题。我遇到了一些许可问题。这是我正在使用的代码:
public void email(String[] to, String subject ) {
Intent email = new Intent(Intent.ACTION_SEND);
email.setType("*/*");
email.putExtra(android.content.Intent.EXTRA_EMAIL, to);
email.putExtra(android.content.Intent.EXTRA_SUBJECT, subject );
File file = activity.get().getApplicationContext().getDatabasePath("mydatabase.db");
if( file.exists() )
{
if( file.canRead() )
{
Uri uri = Uri.fromFile(file);
email.putExtra(Intent.EXTRA_STREAM, uri);
activity.get().startActivity(Intent.createChooser(email, "Email DB File"));
}
}
}
当我运行此代码并选择“Gmail”作为我的邮件客户端时,我会在电子邮件客户端上祝贺“拒绝附件权限”。
为什么会这样?如何在此文件上授予Gmail权限?任何帮助表示赞赏。感谢。
答案 0 :(得分:0)
我找到了解决方法,但我仍然对其他解决方案持开放态度。
如果我使用Environment.getExternalStorageDirectory()在SD卡上创建文件的临时副本,则Gmail客户端有权读取此文件。邮件客户端似乎只有访问内部存储的权限问题。
File file = activity.get().getApplicationContext().getDatabasePath("mydatabase.db");
if( file.exists() && file.canRead() )
{
try {
//We need to make a local copy of the file to SDCard, so Gmail can use it
File destination = new File(Environment.getExternalStorageDirectory(), "database_copy.db");
this.copy(file, destination);
//Attach file and send
Uri uri = Uri.fromFile(destination);
email.putExtra(Intent.EXTRA_STREAM, uri);
activity.get().startActivity(Intent.createChooser(email, "Email DB File"));
}
catch(IOException ioe){
return;
}
}
....
//File copy routine
private void copy(File src, File dst) throws IOException {
InputStream in = new FileInputStream(src);
OutputStream out = new FileOutputStream(dst);
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.close();
}