Java获取文件后缀

 

1 File file = new File("config.ini");
2 String suffix = file.getName().substring(file.getName().lastIndexOf(".") + 1);
3 if(suffix.equals("ini")) {
4     //true
5 }  else {
6     //false
7 }

 

posted @ 2020-04-01 22:36  码林斋  阅读(1039)  评论(0编辑  收藏  举报