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 }