文件输出流崩溃,下载映像时出现“打开失败:EISDIR(是目录)”错误

2022-09-01 06:19:48

我正在尝试从互联网上下载一个iamge,这是代码:

try {
                String imgURL = c.imgURL;
                String imgPATH = c.imgPATH;
                URL url = new URL(imgURL);
                URLConnection conexion = url.openConnection();
                conexion.connect();
                int lenghtOfFile = conexion.getContentLength();
                try {
                    File f = new File(imgPATH);
                    f.mkdirs();

                    BufferedInputStream input = new BufferedInputStream(url.openStream());
                    BufferedOutputStream output = new BufferedOutputStream(new FileOutputStream(imgPATH), 8192); // CRASH HERE

                    byte data[] = new byte[8192];
                    long total = 0;
                    int count = 0;
                    int updateUILimiter = 0;
                    while ((count = input.read(data)) != -1) {
                        total += count;

                        if (updateUILimiter == 20)
                            // publishProgress((int) (total * 100 / lenghtOfFile));
                            updateUILimiter = 0;
                        else
                            updateUILimiter++;

                        output.write(data, 0, count);

                        if (isCancelled()) {
                            output.flush();
                            output.close();
                            input.close();
                            return null;
                        }

                    }
                    output.flush();
                    output.close();
                    input.close();
                } catch (Exception e) {
                    c.imgPATH = "";
                    return null;
                }


            } catch (Exception e) {
                c.imgPATH = "";
                return null;
            }

下面是错误消息:

/mnt/sdcard/tmp/3.png: 打开失败: EISDIR (是一个目录)

这是为什么呢?

“/mnt/sdcard/tmp/”存在。


答案 1

3.png是一个目录,因为您通过调用 来做到这一点。请尝试。从文档中f.mkdirs();f.getParentFile().mkdirs()

创建由此抽象路径名命名的目录,包括任何必要但不存在的父目录。请注意,如果此操作失败,它可能已成功创建某些必需的父目录。

(强调我的)。换句话说,实例中包含的整个路径被视为目录名称,直到并包括最后一部分(在示例输出中)。Filef3.png


答案 2

问题是您正在使用该函数

f.mkdirs();

此函数将创建一个名为“3.png”的文件夹,而不是一个名为“3.png”的文件,因此请先删除此文件夹,

enter image description here

然后替换函数

f.mkdirs();

f.createNewFile();

希望这有帮助。


推荐