getName()
软件包java.io.File.getName()中提供了此方法。
此方法用于检索或返回文件名或目录名,并由文件路径表示。
语法:
String getName(){ }
参数:
我们不会在File方法中将任何对象作为参数传递。
返回值:
此方法的返回类型为String,这意味着该方法返回文件或目录的名称,并且名称为字符串类型,这就是为什么此方法的返回类型为字符串的原因。
getName()
方法示例//导入File类,因为我们将使用File类方法 import java.io.File; //导入Exception类,因为它可能引发异常 //使用文件时 import java.lang.Exception; public class GetNameOfFile { public static void main(String[] args) { try { //指定文件的路径,我们使用双斜杠 //为Windows转义'\'字符序列 File file = new File("C:\\Users\\computer clinic\\OneDrive\\Articles\\myjava.txt"); //通过使用getName()我们可以找到文件名 //之前 System.out.println("The Name Of The File created is : " + file.getName()); } catch (Exception e) { System.out.println("An error occurred."); e.printStackTrace(); } } }
输出结果
D:\Programs>javac GetNameOfFile.java D:\Programs>java GetNameOfFile The Name Of The File created is : C:\Users\computer clinic\OneDrive\Articles\myjava.txt