想要将软件中的数据库文件通过微信发给别人,代码要怎么写?
我在使用过程中,要么说无效文件,要么就没有微信这一项。
下面是代码:
String dbPath = Environment.getExternalStorageDirectory() + File.separator + "PF.sqlite";
Uri dbUri = Uri.fromFile(new File(dbPath));
Log.d("share", "uri:" + dbUri);
//
Intent shareIntent=new Intent(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, dbUri);
shareIntent.setType("sqlite/*");
startActivity(Intent.createChooser(shareIntent, "分享到"));
我在使用过程中,要么说无效文件,要么就没有微信这一项。
下面是代码:
String dbPath = Environment.getExternalStorageDirectory() + File.separator + "PF.sqlite";
Uri dbUri = Uri.fromFile(new File(dbPath));
Log.d("share", "uri:" + dbUri);
//
Intent shareIntent=new Intent(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM, dbUri);
shareIntent.setType("sqlite/*");
startActivity(Intent.createChooser(shareIntent, "分享到"));