我将图像保存在我的目录中,具有相同的名称(出于某种目的)但是当文件已存在时,它不会被覆盖,我怎么知道?因为当我保存这个文件时,现有的文件没有改变,但是当我为我的文件使用不同的名称时,它可以工作.所以我想要的是用新的文件替换现有的文件.到目前为止,这正是我正在尝试的:
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(); }
而这个时间文件不在这里因为吐司没有出现.最佳答案将此行添加到您的代码中
fileWriter fw = new fileWriter(myDir + "/score.jpg",false);
总结 以上是内存溢出为你收集整理的java – 如果文件存在于目录中,我该如何覆盖它全部内容,希望文章能够帮你解决java – 如果文件存在于目录中,我该如何覆盖它所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)