码迷,mamicode.com
首页 > 编程语言 > 详细

2.2.5 NIO.2 Path 和 Java 已有的 File 类

时间:2016-01-06 15:26:30      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

NIO与IO交互
toPath() File -- Path
toFile() Path -- File

Demo:

import java.io.File;
import java.nio.file.Path;
import java.nio.file.Paths;

public class PathAndFile {
    
    public static void main(String[] args) {
        
        File file = new File("/Users/jinxing/Documents/pathtest/path1");
        Path path = Paths.get("/Users/jinxing/Documents/pathtest/path1");
        
        File pathFile = path.toFile();
        Path filePath = file.toPath();
        
        System.out.println(pathFile.getName());
        System.out.println(filePath.getFileName());
        
    }

}

Ran As Java Application:

path1
path1

 

2.2.5 NIO.2 Path 和 Java 已有的 File 类

标签:

原文地址:http://www.cnblogs.com/springup/p/5105328.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!