使用 FileOutputStream 写入文件后尝试删除文件时,某些用户遇到意外问题: file.delete() 返回 false。尽管文件存在且所有权限检查(.exists()、.canRead()、.canWrite()、.canExecute())返回 true,但仍会发生这种情况。
经过进一步调查,似乎存在一个微妙的错误Java 中存在这种情况,即使满足所有必要条件,也可能会阻止成功删除文件。要解决此问题,在删除文件之前调用 System.gc() 至关重要。
以下代码片段将此解决方案合并到原始 writeContent 方法中:
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
}
}
}
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3