java 获取文件类型
时间: 2023-09-14 08:12:00 浏览: 317
Java设置打开或保存文件的对话框的文件类型选择
5星 · 资源好评率100%
Java 中获取文件类型可以通过文件名后缀名来判断,一般情况下,不同的文件类型都有特定的后缀名。可以通过以下方式获取文件类型:
```java
import java.io.File;
public class GetFileType {
public static void main(String[] args) {
File file = new File("test.txt");
String fileName = file.getName();
String fileType = fileName.substring(fileName.lastIndexOf(".") + 1);
System.out.println("文件类型为:" + fileType);
}
}
```
其中,`test.txt`为要获取类型的文件名,`fileName.lastIndexOf(".")`获取文件名中最后一个`.`的位置,`+1`是因为后缀名的起始位置是在`.`的后面一位,而`substring()`方法是截取字符串的方法。
阅读全文