' File.mkdirs()'的结果被忽略了

时间:2016-12-24 10:00:09

标签: java android

这是我在myDir.mkdirs();内的代码,此代码显示我忽略了File.mkdirs()的结果警告。

我尝试修复此警告,但我失败了。

   private void saveGIF() {
            Toast.makeText(getApplicationContext(), "Gif Save", Toast.LENGTH_LONG).show();
            String filepath123 = BuildConfig.VERSION_NAME;
            try {
                File myDir = new File(String.valueOf(Environment.getExternalStorageDirectory().toString()) + "/" + "NewyearGIF");enter code here

    //My Statement Code This Line Show Me that Warning

 myDir.mkdirs();

                File file = new File(myDir, "NewyearGif_" + System.currentTimeMillis() + ".gif");
                filepath123 = file.getPath();
                InputStream is = getResources().openRawResource(this.ivDrawable);
                BufferedInputStream bis = new BufferedInputStream(is);
                ByteArrayOutputStream baos = new ByteArrayOutputStream();
                byte[] img = new byte[AccessibilityNodeInfoCompat.ACTION_NEXT_HTML_ELEMENT];
                while (true) {
                    int current = bis.read();
                    if (current == -1) {
                        break;
                    }
                    baos.write(current);
                }
                FileOutputStream fos = new FileOutputStream(file);
                fos.write(baos.toByteArray());
                fos.flush();
                fos.close();
                is.close();
            } catch (Exception e) {
                e.printStackTrace();
            }
            Intent mediaScanIntent = new Intent("android.intent.action.MEDIA_SCANNER_SCAN_FILE");
            mediaScanIntent.setData(Uri.fromFile(new File(filepath123)));
            sendBroadcast(mediaScanIntent);
        }

6 个答案:

答案 0 :(得分:14)

方法mkdirs的返回值为boolean,您没有使用。

 boolean wasSuccessful = myDir.mkdirs();

create操作返回一个值,指示目录的创建是否成功。例如,结果值wasSuccessful可用于在错误时显示错误。

if (!wasSuccessful) { 
    System.out.println("was not successful."); 
}

关于boolean返回值的Java docs

  

当且仅当创建目录时才显示true,以及所有目录   必要的父目录;否则是假的

答案 1 :(得分:4)

mkdir返回值背后的想法是,每个IO操作都可能失败,您的程序应该对这种情况做出反应。

答案 2 :(得分:2)

File myDirectory = new File(Environment.getExternalStorageDirectory(),"NewyearGIF");
if(!myDirectory.exists()) {
   myDirectory.mkdirs(); 
}else{
   // Directory already exist
}

答案 3 :(得分:1)

File CDir = new File(Environment.getExternalStorageDirectory(), IMPORT_DIRECTORY);
if (!CDir.exists()) {
    boolean mkdir = CDir.mkdir();
    if (!mkdir) {
        Log.e(TAG, "Directory creation failed.");
    }
}

mkdir返回一个布尔值。我们需要从mkdir中获取返回值。用它替换代码,然后检查(忽略File.mkdirs()的结果警告。)

答案 4 :(得分:0)

这是一个古老的问题,但我发现的最简单的方法是:

File imageThumbsDirectory = getBaseContext.getExternalFilesDir("ThumbTemp");

if(imageThumbsDirectory != null) {
    if (!imageThumbsDirectory.exists()) {
        if (imageThumbsDirectory.mkdir()) ; //directory is created;
    }
}

答案 5 :(得分:-1)

只需输入此代码:

File myDirectory = new File(Environment.getExternalStorageDirectory(),"NewyearGIF");
if(!myDirectory.exists()) {
   myDirectory.mkdirs(); 
}else{
   // Directory already exist
}

如果应用程序在Lollipop以上运行,那么您需要为存储添加运行时权限。