idea显示文件后缀名.java
时间: 2023-10-20 07:56:19 浏览: 424
java基于Vue的美食推荐网站ssm毕业设计源码论文
5星 · 资源好评率100%
您可以使用以下方法来显示文件的后缀名(即文件的扩展名):
```java
import java.io.File;
public class Main {
public static void main(String[] args) {
File file = new File("your_file_path");
String fileName = file.getName();
int dotIndex = fileName.lastIndexOf(".");
if (dotIndex != -1 && dotIndex < fileName.length() - 1) {
String fileExtension = fileName.substring(dotIndex + 1);
System.out.println("File extension: " + fileExtension);
} else {
System.out.println("File has no extension.");
}
}
}
```
请将 "your_file_path" 替换为您的文件路径。运行此代码将显示文件的后缀名,如果文件没有后缀名,则显示 "File has no extension."。
阅读全文