java – 如果文件存在于目录中,我该如何覆盖它

前端之家收集整理的这篇文章主要介绍了java – 如果文件存在于目录中,我该如何覆盖它前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我将图像保存在我的目录中,具有相同的名称(出于某种目的)但是当文件已存在时,它不会被覆盖,我怎么知道?因为当我保存这个文件时,现有的文件没有改变,但是当我为我的文件使用不同的名称时,它可以工作.所以我想要的是用新的文件替换现有的文件.到目前为止,这正是我正在尝试的:

 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);
原文链接:https://www.f2er.com/android/430044.html

猜你在找的Android相关文章