Java获取文件的类型和扩展名的实现方法
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获取文件的类型和扩展名的实现方法 的全部内容, 来源链接: utcz.com/p/211460.html