java中Files的常用方法都有哪些?
时间: 2023-11-18 19:04:35 浏览: 200
Java File类的常用方法总结
Files类的常用方法包括:
1. Files.exists(Path path):判断指定路径是否存在
2. Files.createFile(Path path):创建新文件
3. Files.createDirectory(Path dir):创建新目录
4. Files.delete(Path path):删除指定路径的文件或目录
5. Files.copy(Path source, Path target, CopyOption... options):将源路径的文件或目录复制到目标路径
6. Files.move(Path source, Path target, CopyOption... options):将源路径的文件或目录移动到目标路径
7. Files.size(Path path):获取指定路径的文件大小
8. Files.readAllBytes(Path path):读取指定路径的所有字节
9. Files.readAllLines(Path path):读取指定路径的所有行
10. Files.write(Path path, byte[] bytes, OpenOption... options):将字节数组写入指定路径
11. Files.write(Path path, Iterable<? extends CharSequence> lines, Charset cs, OpenOption... options):将行集合写入指定路径
12. Files.newInputStream(Path path, OpenOption... options):获取指定路径的输入流
13. Files.newOutputStream(Path path, OpenOption... options):获取指定路径的输出流
以上是常用的一些Files类方法。
阅读全文