站点图标 度崩网-几度崩溃

nio中的Files类常用方法有哪些?

 

如测试获取文件所属人

public static void testGetOwner() throws IOException {
	Path path_js = Paths.get("/Users/constxiong/Desktop/index.js");
	System.out.println(Files.getOwner(path_js));
}

 

具体介绍和使用,可参照: