本帖最后由 阿里策 于 2013-11-15 19:39 编辑
- class GetLast{
- public static void main(String[] args)throws Exception{
- File file = new File("ttt.java");
- get(file);
- }
-
- public static void get(File file){
- String name = file.getName();//先获取文件的名字
- String mid = name.substring(name.lastIndexOf('.'));//从文件名字字符串的最后一个.开始往后获取该名字的子串,就是扩展名了
- System.out.println(mid);
- }
- }
复制代码 |