使用 FileOutputStream 写入文件后尝试删除文件时,某些用户遇到意外问题: file.delete() 返回 false。尽管文件存在且所有权限检查(.exists()、.canRead()、.canWrite()、.canExecute())返回 true,但仍会发生这种情况。
经过进一步调查,似乎存在一个微妙的错误Java 中存在这种情况,即使满足所有必要条件,也可能会阻止成功删除文件。要解决此问题,在删除文件之前调用 System.gc() 至关重要。
以下代码片段将此解决方案合并到原始 writeContent 方法中:
<code class="java">private void writeContent(File file, String fileContent) { FileOutputStream to; try { to = new FileOutputStream(file); to.write(fileContent.getBytes()); to.flush(); to.close(); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } finally { try { to.close(); // Close the stream as before System.gc(); // Call System.gc() to force garbage collection } catch (IOException e) { // TODO Handle IOException } } }</code>
以上是尽管文件存在且有权限,为什么 File.delete() 返回 False?的详细内容。更多信息请关注PHP中文网其他相关文章!