Tạo file tạm thời trên máy tính trong java?

Trong bài viết này, chúng ta sử dụng File.createTempFile trong java để tạo một file lưu trữ tạm thời trên máy.

Cách tạo đối tượng File sử dụng File.createTempFile 

Chúng ta có 2 constructor để tạo được đối tượng file như sau:

File.createTempFile(prefix, suffix)

File.createTempFile(prefix, suffix, directory)

Trong đó:

  • prefix : là tiền tố file lưu trữ tạm thời
  • suffix là hậu tố, có thể hiểu là đuôi file
  • directory: (nếu có) thì tạo ra một đường dẫn file lưu trữ tạm thời, nếu không sử dụng thì mặc định là null mà lưu trữ file tạm thời trên máy tính ở Local\Temp

Thực hiện code

Cách 1:

File createTempFile = File.createTempFile("temp", ".txt");
System.out.println(createTempFile.getAbsolutePath());

Cách 2:

File createTempFile = File.createTempFile("temp", "txt", new File("test"));
System.out.println(createTempFile.getAbsolutePath());

Trên là hướng dẫn giúp bạn có thể tạo file lưu trữ tạm thời trên máy tính.

Chúc các bạn học tốt!

Bình luận