- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Files.copy 未按预期工作。复制的文件始终为 0 字节。下面是代码片段
File sourceFile = new File(sorceFileName);
File destinationFile = new File(destinationFileName);
Files.copy(sourceFile.toPath(), destinationFile.toPath());
这是什么原因呢?在 Solaris 操作系统上运行。
最佳答案
如果目标文件已存在,您需要指定要替换它
Files.copy(sourceFile.toPath(), destinationFile.toPath(), StandardCopyOption.REPLACE_EXISTING);
您尚未发布任何堆栈跟踪,但如果您不添加上述 CopyOption
并且目标文件确实存在,您将收到 FileAlreadyExistsException
,如下所示comments by @fge中描述并在 javadoc .
关于Java 7 - Files.copy 复制空文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22916693/
我是一名优秀的程序员,十分优秀!