微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

java – 忽略’File.mkdirs()’的结果

这是myDir.mkdirs()中的我的代码;此代码显示我忽略了File.mkdirs()的Result警告.

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

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);
        }

解决方法

方法mkdirs一个布尔返回值,你没有使用它.
boolean wasSuccessful = myDir.mkdirs();

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

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

Java docs左右的布尔返回值:

true if and only if the directory was created,along with all necessary parent directories; false otherwise

原文地址:https://www.jb51.cc/java/126682.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐