Java获取文件的类型和扩展名的实现
程序员文章站
2022-05-12 23:16:22
...
Java获取文件的类型和扩展名
实现代码:
File file=new File("E:\\aa.jpg"); String fileName=file.getName(); String fileTyle=fileName.substring(fileName.lastIndexOf("."),fileName.length()); System.out.println(fileTyle);
程序运行效果图:
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
更多Java获取文件的类型和扩展名的实现相关文章请关注PHP中文网!
上一篇: Python新手实现2048小游戏