java paths_java 基础--NIO.2 – Path 、 Paths 、 Files

Path 、 Paths 、 Files    简介

1.    随着 JDK 7 的发布, Java 对 NIO 进行了 极大的扩 展,增强了对文件处理和文件系统特性的支持, 以至于我们称他们为 NIO.2 。

因为 NIO提供的 一些功能, NIO 已经成为文件处理中越来越重 要的部分。

2. Path 与 Paths

 java.nio.file.Path接口代表一个平台无关的平台路径,描述了目 录结构中文件的位置

 Paths 提供的 get() 方法用来获取 Path 对象:

Path     get(String first, String ... more) : 用于将多个字符串串连成路径

 Path 常用方法:

boolean  endsWith(String path) : 判断是否以 path 路径结束

boolean startsWith(String path) :判断是否以 path 路径开始

boolean isAbsolute() : 判断是否是绝对路径

Path getFileName() : 返回与调用Path 对象关联的文件名

Path getName(int idx) : 返回的指定索引位置 idx 的路径名称

int getNameCount()  : 返回 Path 根目录后面元素的数量

Path getParent() :返回 Path 对象包含整个路径,不包含 Path 对象指定的文件路径

Path getRoot() :返回调用 Path 对象的根路径

Path resolve(Path p) : 将相对路径解析为绝对路径

Path   toAbsolutePath() : 作为绝对路径返回调用 Path 对象

String toString() : 返回调用 Path 对象的字符串表示形式

3.  Files 类

java.nio.file.Files 用于操作文件或目录的工具类。

Files 常用方法:

Path  copy(Path src,Path dest, CopyOption ... how) : 文件的复制

Path  createDirectory(Path path,FileAttribute> ... attr) : 创建一个目录

Path   createFile(Path path,FileAttribute> ... arr) : 创建一个文件

void delete(Path path) : 删除一个文件

Pathmove(Path src, Path dest, CopyOption...how) : 将 src 移动到 dest 位置

long size(Pathpath) : 返回 path 指定文件的大小Files 类

boolean exists(Path path,LinkOption ... opts) : 判断文件是否存在

boolean isDirectory(Path path, LinkOption ...opts) : 判断是否是目录

boolean isExecutable(Path path) : 判断是否是可执行文件

booleanisHidden(Path path) : 判断是否是隐藏文件

boolean isReadable(Path path) : 判断文件是否可读

boolean isWritable(Path path) : 判断文件是否可写

boolean notExists(Path path,LinkOption ... opts) : 判断文件是否不存在

public static  A     readAttributes(Path path,Class type,LinkOption... options)  :

获取与 path指定的文件相关联的属性 。

Files 常用方法: 用于操作内容

SeekableByteChannel newByteChannel(Path  path, OpenOption...how) : 获取与指定文件的连接, how 指定打开方式。

DirectoryStream newDirectoryStream(Path path) : 打开 path 指定的目录

InputStream newInputStream(Path  path, OpenOption...how): 获取 InputStream 对象

OutputStream newOutputStream(Path path, OpenOption...how) : 获取 OutputStream 对象自动 资源管理

4.  Java 7 增加了一个新特性,该特性提供了另外      一种管理资源的方式,这种方式能自动关闭文 件。

这个特性有时被称为自动资源管理 (Automatic Resource Management, ARM) , 该特   性以 try 语句的扩展版为基础。

自动资源管理 主要用于,当不再需要文件(或其他资源)时, 可以防止无意中忘记释放它们。

自动 资源管理

自动资源管理基于 try 语句的扩展形式:

try( 需要关闭的资源 声明 ){

// 可能发生异常的语句

}catch( 异常类型 变量名 ){

// 异常的处理语句

}......

finally{

// 一定执行的语句

}

当 try 代码块结束时,自动释放资源。因此不需要显示的调用 close() 方法。该形式也称为 “带资源的 try 语句 ” 。

注意:

① try 语句中声明的资源被隐式声明为 final ,资源的作用局限于带资源的 try 语句

② 可以在一条 try语句中管理多个资源,每个资源以 “;” 隔开即可 。

③需要关闭的资源,必须 实现 了 AutoCloseable 接口或其自接口 Closeable

8f900a89c6347c561fdf2122f13be562.png

961ddebeb323a10fe0623af514929fc1.png

packagecom.atguigu.nio;importjava.io.IOException;importjava.nio.ByteBuffer;importjava.nio.channels.FileChannel;importjava.nio.channels.SeekableByteChannel;importjava.nio.file.DirectoryStream;importjava.nio.file.Files;importjava.nio.file.LinkOption;importjava.nio.file.Path;importjava.nio.file.Paths;importjava.nio.file.StandardCopyOption;importjava.nio.file.StandardOpenOption;importjava.nio.file.attribute.BasicFileAttributes;importjava.nio.file.attribute.DosFileAttributeView;importorg.junit.Test;public classTestNIO_2 {//自动资源管理:自动关闭实现 AutoCloseable 接口的资源

@Testpublic voidtest8(){try(FileChannel inChannel = FileChannel.open(Paths.get("1.jpg"), StandardOpenOption.READ);

FileChannel outChannel= FileChannel.open(Paths.get("2.jpg"), StandardOpenOption.WRITE, StandardOpenOption.CREATE)){

ByteBuffer buf= ByteBuffer.allocate(1024);

inChannel.read(buf);

}catch(IOException e){

}

}/*Files常用方法:用于操作内容

SeekableByteChannel newByteChannel(Path path, OpenOption…how) : 获取与指定文件的连接,how 指定打开方式。

DirectoryStream newDirectoryStream(Path path) : 打开 path 指定的目录

InputStream newInputStream(Path path, OpenOption…how):获取 InputStream 对象

OutputStream newOutputStream(Path path, OpenOption…how) : 获取 OutputStream 对象*/@Testpublic void test7() throwsIOException{

SeekableByteChannel newByteChannel= Files.newByteChannel(Paths.get("1.jpg"), StandardOpenOption.READ);

DirectoryStream newDirectoryStream = Files.newDirectoryStream(Paths.get("e:/"));for(Path path : newDirectoryStream) {

System.out.println(path);

}

}/*Files常用方法:用于判断

boolean exists(Path path, LinkOption … opts) : 判断文件是否存在

boolean isDirectory(Path path, LinkOption … opts) : 判断是否是目录

boolean isExecutable(Path path) : 判断是否是可执行文件

boolean isHidden(Path path) : 判断是否是隐藏文件

boolean isReadable(Path path) : 判断文件是否可读

boolean isWritable(Path path) : 判断文件是否可写

boolean notExists(Path path, LinkOption … opts) : 判断文件是否不存在

public static A readAttributes(Path path,Class type,LinkOption... options) : 获取与 path 指定的文件相关联的属性。*/@Testpublic void test6() throwsIOException{

Path path= Paths.get("e:/nio/hello7.txt");//System.out.println(Files.exists(path, LinkOption.NOFOLLOW_LINKS));

BasicFileAttributes readAttributes= Files.readAttributes(path, BasicFileAttributes.class, LinkOption.NOFOLLOW_LINKS);

System.out.println(readAttributes.creationTime());

System.out.println(readAttributes.lastModifiedTime());

DosFileAttributeView fileAttributeView= Files.getFileAttributeView(path, DosFileAttributeView.class, LinkOption.NOFOLLOW_LINKS);

fileAttributeView.setHidden(false);

}/*Files常用方法:

Path copy(Path src, Path dest, CopyOption … how) : 文件的复制

Path createDirectory(Path path, FileAttribute> … attr) : 创建一个目录

Path createFile(Path path, FileAttribute> … arr) : 创建一个文件

void delete(Path path) : 删除一个文件

Path move(Path src, Path dest, CopyOption…how) : 将 src 移动到 dest 位置

long size(Path path) : 返回 path 指定文件的大小*/@Testpublic void test5() throwsIOException{

Path path1= Paths.get("e:/nio/hello2.txt");

Path path2= Paths.get("e:/nio/hello7.txt");

System.out.println(Files.size(path2));//Files.move(path1, path2, StandardCopyOption.ATOMIC_MOVE);

}

@Testpublic void test4() throwsIOException{

Path dir= Paths.get("e:/nio/nio2");//Files.createDirectory(dir);

Path file= Paths.get("e:/nio/nio2/hello3.txt");//Files.createFile(file);

Files.deleteIfExists(file);

}

@Testpublic void test3() throwsIOException{

Path path1= Paths.get("e:/nio/hello.txt");

Path path2= Paths.get("e:/nio/hello2.txt");

Files.copy(path1, path2, StandardCopyOption.REPLACE_EXISTING);

}/*Paths 提供的 get() 方法用来获取 Path 对象:

Path get(String first, String … more) : 用于将多个字符串串连成路径。

Path 常用方法:

boolean endsWith(String path) : 判断是否以 path 路径结束

boolean startsWith(String path) : 判断是否以 path 路径开始

boolean isAbsolute() : 判断是否是绝对路径

Path getFileName() : 返回与调用 Path 对象关联的文件名

Path getName(int idx) : 返回的指定索引位置 idx 的路径名称

int getNameCount() : 返回Path 根目录后面元素的数量

Path getParent() :返回Path对象包含整个路径,不包含 Path 对象指定的文件路径

Path getRoot() :返回调用 Path 对象的根路径

Path resolve(Path p) :将相对路径解析为绝对路径

Path toAbsolutePath() : 作为绝对路径返回调用 Path 对象

String toString() : 返回调用 Path 对象的字符串表示形式*/@Testpublic voidtest2(){

Path path= Paths.get("e:/nio/hello.txt");

System.out.println(path.getParent());

System.out.println(path.getRoot());//Path newPath = path.resolve("e:/hello.txt");//System.out.println(newPath);

Path path2= Paths.get("1.jpg");

Path newPath=path2.toAbsolutePath();

System.out.println(newPath);

System.out.println(path.toString());

}

@Testpublic voidtest1(){

Path path= Paths.get("e:/", "nio/hello.txt");

System.out.println(path.endsWith("hello.txt"));

System.out.println(path.startsWith("e:/"));

System.out.println(path.isAbsolute());

System.out.println(path.getFileName());for (int i = 0; i < path.getNameCount(); i++) {

System.out.println(path.getName(i));

}/*true

true

true

hello.txt

nio

hello.txt*/}

}

Files paths

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值