可以通过使用字符串的substring和lastIndexOf方法来实现。具体代码如下: ```java public static String getFileName(String filePath) { int lastIndexOfSlash = filePath.lastIndexOf("/"); int lastIndexOfDot = filePath.lastIndexOf("."); String fileName = filePath.substring(lastIndexOfSlash + 1, lastIndexOfDot); return fileName; } ``` 使用方法如下: ```java String filePath = "path/to/file/test.pptx"; String fileName = getFileName(filePath); System.out.println(fileName); ``` 输出结果为: ``` test ``` 注意,上述代码只适用于文件路径中只有一个"/"和一个"."的情况,如果有多个或者没有的话,需要进行额外的处理。 [2024-05-22 14:03:14 | AI写代码神器 | 419点数解答]