这个程序可以用来获取文件的扩展名
- import java.io.File;
- 4.
- 5. /**
- 6. * 第 43 题:编写一个可以获取文件扩展名的函数,形参接收一个文件名字符串,返回一个扩展名字符串。
- 7. * @author
- 8. *
- 9. */
- 10. public class Test43 {
- 11. public static void main(String[] args){
- 12. File file = new File("d:\\me.txt");
- 13. getName(file);
- 14. }
- 15. public static void getName(File file){
- 16. String name = file.getName();
- 17. String s = name.substring(name.lastIndexOf(".")+1);
- 18. System.out.println("文件名为"+name+"拓展名为:"+s);
- 19. }
- 20.
- 21. }
复制代码 |
|