Use the new Files class and Path class in Java 11 for file system operations
Java 11 introduces a number of new classes and features, including improvements to file system operations. The new Files class and Path class provide a more convenient and flexible file operation method, allowing us to process files and directories more easily.
Before Java 11, we usually used the java.io.File class to operate files and directories. However, the functionality of this class is relatively limited and not flexible enough. The new Files class and Path class introduced in Java 11 provide more functionality and operation options.
First, let's take a look at how to use the Path class to represent file paths. The Path class represents a path in the file system, which can be a path to a file or directory. We can use the Path.of() method to create a Path object, for example:
Path path = Path.of("C:\Users\Bob\Desktop\test.txt");
The above code creates a Path object using an absolute path. We can also use relative paths to create Path objects, for example:
Path path = Path.of("files\test.txt");
It should be noted that relative paths are relative to the path of the current working directory.
Next, we can use the Files class to perform some file operations. Here are some common file operation examples:
- Check if the file exists:
if (Files.exists(path)) { System.out.println("文件存在"); } else { System.out.println("文件不存在"); }
- Create the file:
try { Files.createFile(path); System.out.println("文件创建成功"); } catch (IOException e) { e.printStackTrace(); }
- Create directory:
try { Files.createDirectory(path); System.out.println("目录创建成功"); } catch (IOException e) { e.printStackTrace(); }
- Copy file:
Path targetPath = Path.of("C:\Users\Bob\Desktop\target.txt"); try { Files.copy(path, targetPath, StandardCopyOption.REPLACE_EXISTING); System.out.println("文件复制成功"); } catch (IOException e) { e.printStackTrace(); }
- Delete file or directory:
try { Files.delete(path); System.out.println("文件或目录删除成功"); } catch (IOException e) { e.printStackTrace(); }
above Just some basic file manipulation examples. The Files class also provides many other functions, such as moving files, renaming files, traversing directories, and more. We can choose the corresponding method to implement file system operations according to specific needs.
In addition to the above examples, Java 11 also provides some other useful features. For example, we can use the Files.lines() method to read all the lines of the file as follows:
try { List<String> lines = Files.lines(path).collect(Collectors.toList()); for (String line : lines) { System.out.println(line); } } catch (IOException e) { e.printStackTrace(); }
In this example, we use the Files.lines() method to read all the lines of the file, and save it in List
In summary, the new Files class and Path class in Java 11 provide a more convenient and flexible file system operation method. We can use the Path class to represent file paths and the Files class for file and directory operations. These new classes and functions make file system operations simpler and more efficient.
I hope this article will help you understand and use the new Files class and Path class in Java 11. Wish you happy using it!
The above is the detailed content of File system operations using the new Files and Path classes in Java 11. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

WebStorm Mac version
Useful JavaScript development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.
