集册 Java实例教程 使用getAttribute方法一次获取单个属性

使用getAttribute方法一次获取单个属性

欢马劈雪     最近更新时间:2020-01-02 10:19:05

569
使用getAttribute方法一次获取一个属性

import java.io.IOException;
/**
来 自 nowjava - 时代Java
**/

import java.nio.file.FileSystems;

import java.nio.file.Files;

import java.nio.file.Path;


public class Main {

  public static void main(String[] args) {

    try {

      Path path = FileSystems.getDefault().getPath("/home/docs/users.txt");

      System.out.println(Files.getAttribute(path, "size"));

    } catch (IOException ex) {

      System.out.println("IOException");//nowjava.com 提供

    }

  }


}