Get the file name from the Path object : Paths « JDK 7 « Java
- Java
- JDK 7
- Paths
Get the file name from the Path object
import java.nio.file.FileSystems;
import java.nio.file.Path;
public class Test {
public static void main(String[] args) {
Path path = FileSystems.getDefault().getPath("/home/docs/status.txt");
System.out.printf("getFileName: %s\n", path.getFileName());
}
}
Related examples in the same category