This commit is contained in:
Looly 2022-10-09 18:37:21 +08:00
parent 3178bd1839
commit e354ea93cc
2 changed files with 14 additions and 0 deletions

View File

@ -174,6 +174,14 @@ public class FileNameUtil {
if (0 == len) {
return fileName;
}
//issue#2642多级扩展名的主文件名
for (final CharSequence specialSuffix : SPECIAL_SUFFIX) {
if(StrUtil.endWith(fileName, "." + specialSuffix)){
return StrUtil.subPre(fileName, len - specialSuffix.length() - 1);
}
}
if (CharUtil.isFileSeparator(fileName.charAt(len - 1))) {
len--;
}

View File

@ -13,4 +13,10 @@ public class FileNameUtilTest {
name = FileNameUtil.cleanInvalid("\r1\r\n2\n");
Assert.assertEquals("12", name);
}
@Test
public void mainNameTest() {
final String s = FileNameUtil.mainName("abc.tar.gz");
Assert.assertEquals("abc", s);
}
}