1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > java delete file 失败_文件无法删除java.io.IOException: Unable to delete

java delete file 失败_文件无法删除java.io.IOException: Unable to delete

时间:2020-08-12 15:48:20

相关推荐

java delete file 失败_文件无法删除java.io.IOException: Unable to delete

标签:

疑问:1.为什么调用file.delete()方法时,返回值为false.

2.为什么调用Guava工具jar包中的Files.move(from,to) ,报异常:java.io.IOException: Unable to delete

执行代码程序前需要创建一个test.txt文件。

上代码:

packageindi.johnny.test007;importjava.io.File;importjava.io.FileInputStream;importjava.io.InputStream;public classDemo {public static voidmain(String[] args) {try{

File file= new File("C:/Users/johnny/Desktop/test.txt");if(file.exists()){

InputStream inputStream= newFileInputStream(file);

//inputStream.close();boolean flag =file.delete();

System.out.println(flag);

}

}catch(Exception e) {

System.out.println(e);

}

}

}

执行以上代码会打印出 "false",也就是说删除文件失败。

但是将上述代码中的注释行"inputStream.close();"打开,则打印出"true",删除文件成功。

结论:通过文件加载的数据流InputStream,若未关闭,则文件无法删除。

Guava中的Files.move(from,to)方法有调用file.delete()方法,所以当inputStream未执行close()方法时,会报异常"Unable to delete"。

以下为Guava中Files.move(from,to)方法内容:

public static voidmove(File from, File to)/* */ throwsIOException/* */{/*494*/Preconditions.checkNotNull(from);/*495*/Preconditions.checkNotNull(to);/*496*/ Preconditions.checkArgument(!from.equals(to), "Source %s and destination %s must be different", newObject[] { from, to });/* */

/* */

/*499*/ if (!from.renameTo(to)) {/*500*/copy(from, to);/*501*/ if (!from.delete()) {/*502*/ if (!to.delete()) {/*503*/ throw new IOException("Unable to delete " +to);/* */}/*505*/ throw new IOException("Unable to delete " +from);/* */}/* */}/* */ }

标签:

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。