BasicFileAttributeView.name() has the following syntax.
String name()
In the following code shows how to use BasicFileAttributeView.name() method.
import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.nio.file.attribute.BasicFileAttributeView; //from w w w.j av a 2s.c o m public class Main { public static void main(String[] args) { Path path = Paths.get("C:/tutorial/Java/JavaFX", "Topic.txt"); BasicFileAttributeView bv = Files.getFileAttributeView(path, BasicFileAttributeView.class); System.out.println(bv.name()); } }
The code above generates the following result.