更新时间:2022-06-10 11:10:59 来源:极悦 浏览1488次
在Java教程中,大家学到了很多关于Java的课程,接下来极悦小编将介绍在 Java 中复制文件的常用方法。
首先,我们将使用标准IO和NIO.2 API,以及两个外部库:commons-io和guava。
首先,要使用 java.io API复制文件,我们需要打开一个流,遍历内容并将其写入另一个流:
@Test
public void givenIoAPI_whenCopied_thenCopyExistsWithSameContents()
throws IOException {
File copied = new File("src/test/resources/copiedWithIo.txt");
try (
InputStream in = new BufferedInputStream(
new FileInputStream(original));
OutputStream out = new BufferedOutputStream(
new FileOutputStream(copied))) {
byte[] buffer = new byte[1024];
int lengthRead;
while ((lengthRead = in.read(buffer)) > 0) {
out.write(buffer, 0, lengthRead);
out.flush();
}
}
assertThat(copied).exists();
assertThat(Files.readAllLines(original.toPath())
.equals(Files.readAllLines(copied.toPath())));
}
实现这样的基本功能需要做很多工作。
对我们来说幸运的是,Java 改进了它的核心 API,并且我们有了使用NIO.2 API复制文件的更简单的方法。
使用NIO.2可以显着提高文件复制性能,因为NIO.2使用较低级别的系统入口点。
让我们仔细看看 Files. copy()方法有效。
copy()方法使我们能够指定表示复制选项的可选参数。默认情况下,复制文件和目录不会覆盖现有文件和目录,也不会复制文件属性。
可以使用以下复制选项更改此行为:
REPLACE_EXISTING –如果文件存在则替换它
COPY_ATTRIBUTES –将元数据复制到新文件
NOFOLLOW_LINKS –不应遵循符号链接
NIO.2 Files类提供了一组重载的copy ()方法,用于在文件系统中复制文件和目录。
让我们看一个使用带有两个Path参数的copy()的示例:
@Test
public void givenNIO2_whenCopied_thenCopyExistsWithSameContents()
throws IOException {
Path copied = Paths.get("src/test/resources/copiedWithNio.txt");
Path originalPath = original.toPath();
Files.copy(originalPath, copied, StandardCopyOption.REPLACE_EXISTING);
assertThat(copied).exists();
assertThat(Files.readAllLines(originalPath)
.equals(Files.readAllLines(copied)));
}
请注意,目录副本很浅,这意味着目录中的文件和子目录不会被复制。
使用 Java 复制文件的另一种常用方法是使用commons-io库。
首先,我们需要添加依赖:
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.11.0</version>
</dependency>
最新版本可以从Maven Central下载。
然后,要复制文件,我们只需要使用 FileUtils 类中定义的copyFile ()方法。该方法采用源文件和目标文件。
让我们看一下使用copyFile()方法的 JUnit 测试:
@Test
public void givenCommonsIoAPI_whenCopied_thenCopyExistsWithSameContents()
throws IOException {
File copied = new File(
"src/test/resources/copiedWithApacheCommons.txt");
FileUtils.copyFile(original, copied);
assertThat(copied).exists();
assertThat(Files.readAllLines(original.toPath())
.equals(Files.readAllLines(copied.toPath())));
}
最后,我们来看看 Google 的 Guava 库。
同样,如果我们想使用 Guava ,我们需要包含依赖项:
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>31.0.1-jre</version>
</dependency>
最新版本可以在 Maven Central上找到。
这是 Guava 复制文件的方式:
@Test
public void givenGuava_whenCopied_thenCopyExistsWithSameContents()
throws IOException {
File copied = new File("src/test/resources/copiedWithGuava.txt");
com.google.common.io.Files.copy(original, copied);
assertThat(copied).exists();
assertThat(Files.readAllLines(original.toPath())
.equals(Files.readAllLines(copied.toPath())));
}
如果想了解更多相关知识,可以关注一下极悦的Guava教程,里面有更丰富的知识等着大家去学习,希望对大家能够有所帮助。
0基础 0学费 15天面授
Java就业班有基础 直达就业
业余时间 高薪转行
Java在职加薪班工作1~3年,加薪神器
工作3~5年,晋升架构
提交申请后,顾问老师会电话与您沟通安排学习