public class Test0000 {
public static void main(String[] args) {
// TODO Auto-generated method stub
File file = new File("D:\\笔记.txt");
System.out.println(file.getName()); //用file类的getname方法,返回文件或文件夹的名字
String [] str="D:\\笔记.txt".split("\\\\"); //可以用split方法,得到最后str数组的最后一个字符串即可
String fileName =str[str.length-1];
System.out.println(fileName);
}
} |