我正在尝试共享使用共享意图保存到内部存储的图像文件。在我打算不显示图像文件之后。
我使用以下代码保存图像文件
try {
FileOutputStream fos = openFileOutput("twitterimage.jpg", Context.MODE_PRIVATE);
// Writing the bitmap to the output stream
bikeBm.compress(Bitmap.CompressFormat.JPEG, 100, fos);
fos.close();
} catch (Exception e) {
Log.e("saveToInternalStorage()", e.getMessage());
}
//意图代码
File internalFile = getFileStreamPath("twitterimage.jpg");
Uri uri = Uri.fromFile(internalFile);
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
shareIntent.putExtra(Intent.EXTRA_STREAM,new File(uri));
shareIntent.setType("image/jpeg");
shareIntent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(Intent.createChooser(shareIntent, "send"));
当我使用上面的“uri”检查文件存在时,图像文件存在于内部存储中,但使用检查文件
String file = "data/data/com.bike.app/twitterimage.jpg";
File f = new File(file);
显示文件不存在。
请帮我解决这个问题。