Java.io.File.getName()方法实例
java.io.File.getName() 方法返回的路径名的名称序列的最后一个名字,这意味着表示此抽象路径名的文件或目录的名称被返回。
声明
以下是java.io.File.getName()方法的声明:
public String getName()
参数
-
NA
返回值
此方法返回的文件名或目录或空字符串,如果在路径名的名称序列为空。
异常
-
NA
例子
下面的示例演示java.io.File.getName()方法的用法。
package com.yiibai; import java.io.File; public class FileDemo { public static void main(String[] args) { File f = null; File f1 = null; String v, v1; boolean bool = false; try{ // create new files f = new File("C:\test.txt"); f1 = new File("C:\Program Files"); // get file name or directory name v = f.getName(); v1 = f1.getName(); // true if the file path exists bool = f.exists(); // if file exists if(bool) { // prints System.out.println("File name: "+v); } // true if the directory exists bool = f1.exists(); // if the folder exists if(bool) { // prints System.out.print("Folder name: "+v1); } }catch(Exception e){ // if any error occurs e.printStackTrace(); } } }
让我们编译和运行上面的程序,这将产生以下结果:
File name: test.txt Folder name: Program Files