我已经习惯了Java 7和新的Files
类。
我正在编写一个小应用程序,在某些时候,它必须替换文件的内容。我使用了一个临时文件来避免在出现问题时删除目标文件。但是,在执行实际副本时,我总是会得到AccessDeniedException
。
这是我的代码:
// Temporary file generation.
Path target = getCurrentConfigFile(); // Returns a path, works ok.
Path tempFile = Files.createTempFile("tempfile", null);
Files.write(tempFile, conf.getBytes(Charset.defaultCharset()), StandardOpenOption.WRITE);
// Actual copy.
Files.copy(tempFile, target, StandardCopyOption.REPLACE_EXISTING);
// Cleanup.
Files.delete(tempFile);
getCurrentConfigFile()
处理目标文件路径创建:
(... generates various strings from configuration parameters)
return FileSystems.getDefault().getPath(all, these, various, strings);
当我执行代码时,它是通过.bat
脚本进行的,并且我在标准命令提示符或提升时都收到错误。目标文件位于 C:temptests
中,这是我与同一 Windows 用户创建的目录。
问题似乎出在从临时文件中读取,因为直接写入目标有效。接下来我应该看哪里?
不是答案,但太长而无法发表评论。我运行下面的代码(从 Windows 7 上的命令行),它按预期工作:
public static void main(String[] args) throws IOException {
Path target = Paths.get("C:/temp/test.txt"); // Returns a path, works ok.
Path tempFile = Files.createTempFile("tempfile", null);
Files.write(tempFile, "abc".getBytes(UTF_8), StandardOpenOption.WRITE);
// Actual copy.
Files.copy(tempFile, target, StandardCopyOption.REPLACE_EXISTING);
// Cleanup.
Files.delete(tempFile);
}
所以你的问题不在于该代码。它可能在您的代码中的其他地方,或者由于您正在使用的文件/文件夹的权限。