在此示例中,我们将学习从Java的绝对路径获取文件名。
import java.io.File; class Main { public static void main(String[] args) { //链接到文件Test.class File file = new File("C:\\Users\\Bhandari\\Desktop\\nhooo\\Java Article\\Test.class"); //使用getName()获取文件名 String fileName = file.getName(); System.out.println("文件名: " + fileName); } }
输出结果
文件名: Test.class
在上面的示例中,我们使用了File类的getName()方法来获取文件的名称。
要了解有关文件的更多信息,请访问Java File。
我们还可以使用字符串方法从文件的绝对路径获取文件名。
import java.io.File; class Main { public static void main(String[] args) { File file = new File("C:\\Users\\Bhandari\\Desktop\\nhooo\\Java Article\\Test.class"); //将文件转换为字符串string String stringFile = file.toString(); int index = stringFile.lastIndexOf('\\'); if(index > 0) { String fileName = stringFile.substring(index + 1); System.out.println("文件名: " + fileName); } } }
输出结果
文件名: Test.class
在上面的示例中,
file.toString() - 将File对象转换为字符串。
stringFile.lastIndexOf() -返回 stringFile 中最后一次出现的字符'\\'。 要了解更多信息,请访问Java String lastindexOf()。
stringFile.substring(index +1) - 返回位置index +1之后的所有子字符串。要了解更多信息,请访问Java String substring()。