InputStream流已经关闭了,但是依旧无法delete文件或者文件夹,提示被JVM占用等

有时候流明明已经关闭了,但是还是无法删除文件或者文件夹,提示被JVM占用等

public void download(String sourceUrl, String targetPathFile) {
        URL url = null;
        //从网络上下载一张图片
        InputStream inputStream = null;
        OutputStream outputStream = null;
        //建立一个网络链接
        HttpURLConnection con = null;
        try {
            url = new URL(sourceUrl);
            con = (HttpURLConnection) url.openConnection();
            inputStream = con.getInputStream();
            outputStream = new FileOutputStream(new File(targetPathFile));
            int n = -1;
            byte b[] = new byte[1024];
            while ((n = inputStream.read(b)) != -1) {
                outputStream.write(b, 0, n);
            }
            outputStream.flush();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if(inputStream!=null)
                inputStream.close();
            } catch (IOException e1) {
                e1.printStackTrace();
            }
            try {
                if(outputStream!=null)
                outputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
   }

这样的时候,通常可以这样解决:

                    System.gc();//在删除之前调用垃圾回收,这样jvm就不会占用文件了
                    try {
                        Thread.sleep(100);//我这边是这样,如果不休眠一会,依旧无法删除
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                    boolean dirFile = FileUtils.deleteQuietly(new File(targetDirPath));
                    boolean zipFile = FileUtils.deleteQuietly(new File(targetZipPathFile));

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值