我将图像保存在我的目录中,具有相同的名称(出于某种目的)但是当文件已存在时,它不会被覆盖,我怎么知道?因为当我保存这个文件时,现有的文件没有改变,但是当我为我的文件使用不同的名称时,它可以工作.所以我想要的是用新的文件替换现有的文件.到目前为止,这正是我正在尝试的:
content.setDrawingCacheEnabled(true);
Bitmap bitmap = content.getDrawingCache(); // an bitmap file for saving
File file = new File(context.getApplicationContext().getFilesDir() + "/img.jpg"); //here's the path where i'm saving my file
if (file.exists()){
file.delete(); // here i'm checking if file exists and if yes then i'm deleting it but its not working
}
String path = file.getPath();
try {
file.createNewFile();
FileOutputStream ostream = new FileOutputStream(file);
bitmap.compress(Bitmap.CompressFormat.JPEG,60,ostream);
savedFile = new File(path);
ostream.close();
}
catch (Exception e)
{
e.printStackTrace();
}
if (file.exists()){
Toast.makeText(context,"Still EXISTS",Toast.LENGTH_SHORT).show();
}
而这个时间文件不在这里因为吐司没有出现.
最佳答案
原文链接:https://www.f2er.com/android/430044.html